mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-27 17:31:09 -06:00
26 lines
401 B
PHP
26 lines
401 B
PHP
<?php
|
|
|
|
namespace FireflyIII\Support\Facades;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
/**
|
|
* Class Navigation
|
|
*
|
|
* @codeCoverageIgnore
|
|
* @package FireflyIII\Support\Facades
|
|
*/
|
|
class Navigation extends Facade
|
|
{
|
|
/**
|
|
* Get the registered name of the component.
|
|
*
|
|
* @return string
|
|
*/
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return 'navigation';
|
|
}
|
|
|
|
}
|