Files
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 07:35:10 +01:00
/**
* Class Amount
*
2015-05-10 08:26:42 +02: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 08:14:32 +02:00
}