mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
23 lines
376 B
PHP
23 lines
376 B
PHP
|
<?php
|
||
|
|
||
|
namespace FireflyIII\Support\Facades;
|
||
|
|
||
|
use Illuminate\Support\Facades\Facade;
|
||
|
/**
|
||
|
* Class Amount
|
||
|
*
|
||
|
* @package FireflyIII\Support\Facades
|
||
|
*/
|
||
|
class ExpandedForm extends Facade
|
||
|
{
|
||
|
/**
|
||
|
* Get the registered name of the component.
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
protected static function getFacadeAccessor()
|
||
|
{
|
||
|
return 'expandedform';
|
||
|
}
|
||
|
|
||
|
}
|