Files
firefly-iii/app/Support/Facades/Amount.php

24 lines
365 B
PHP
Raw Normal View History

2015-02-07 06:49:24 +01:00
<?php
namespace FireflyIII\Support\Facades;
use Illuminate\Support\Facades\Facade;
2015-02-11 07:35:10 +01:00
2015-02-07 06:49:24 +01:00
/**
* Class Amount
*
* @package FireflyIII\Support\Facades
*/
class Amount extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'amount';
}
}