Some new stuffs.

This commit is contained in:
James Cole
2015-02-06 21:23:14 +01:00
parent c4d8a0da05
commit de715c14be
6 changed files with 269 additions and 238 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace FireflyIII\Support\Facades;
use Illuminate\Support\Facades\Facade;
/**
* Class Preferences
*
* @package FireflyIII\Support\Facades
*/
class Navigation extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'navigation';
}
}