firefly-iii/app/Support/Facades/ExpandedForm.php

26 lines
401 B
PHP
Raw Normal View History

<?php
namespace FireflyIII\Support\Facades;
use Illuminate\Support\Facades\Facade;
2015-02-11 00:35:10 -06:00
/**
* Class Amount
*
2015-05-10 01:26:42 -05:00
* @codeCoverageIgnore
* @package FireflyIII\Support\Facades
*/
class ExpandedForm extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'expandedform';
}
2015-03-29 01:14:32 -05:00
}