mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-05 21:53:08 -06:00
25 lines
308 B
PHP
25 lines
308 B
PHP
<?php
|
|
|
|
namespace FireflyIII\Shared\Facade;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
/**
|
|
* Class Amount
|
|
*
|
|
* @package FireflyIII\Shared\Facade
|
|
*/
|
|
class Amount extends Facade
|
|
{
|
|
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return 'amount';
|
|
}
|
|
|
|
}
|