OpenSource CLI-App to install and handle stuff related to Web-Server
 
 
 

20 lines
397 B

<?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';
}
}