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

26 lines
401 B
PHP
Raw Normal View History

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