Reimplemented forms, added an overdue fix.

This commit is contained in:
James Cole
2015-02-08 01:15:15 +01:00
parent 3d01669cea
commit 434b4ded4a
24 changed files with 616 additions and 44 deletions

View File

@@ -0,0 +1,23 @@
<?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';
}
}