<?php
|
|
|
|
namespace App\Facades\Menus;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
/**
|
|
* Nginx
|
|
*
|
|
* @author Björn Hase
|
|
* @license http://opensource.org/licenses/MIT The MIT License
|
|
* @link https://github.com/nirgendswo/fuzzy-cms GitHub Repository
|
|
*/
|
|
class StylesFactory extends Facade
|
|
{
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return 'App\Menus\StylesFactory';
|
|
}
|
|
}
|