mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-08 07:03:23 -06:00
16 lines
205 B
PHP
16 lines
205 B
PHP
<?php
|
|
|
|
namespace FireflyIII\Shared\Facade;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
class FFForm extends Facade
|
|
{
|
|
|
|
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return 'ffform';
|
|
}
|
|
|
|
} |