mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 19:31:01 -06:00
25 lines
308 B
PHP
25 lines
308 B
PHP
<?php
|
|
|
|
namespace FireflyIII\Shared\Facade;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
/**
|
|
* Class FFForm
|
|
*
|
|
* @package FireflyIII\Shared\Facade
|
|
*/
|
|
class FFForm extends Facade
|
|
{
|
|
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return 'ffform';
|
|
}
|
|
|
|
}
|