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

27 lines
416 B
PHP
Raw Normal View History

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