OpenSource CLI-App to install and handle stuff related to Web-Server
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
383 B

4 years ago
  1. <?php
  2. namespace App\Facades;
  3. use Illuminate\Support\Facades\Facade;
  4. /**
  5. * Nginx
  6. *
  7. * @author Björn Hase
  8. * @license http://opensource.org/licenses/MIT The MIT License
  9. * @link https://github.com/nirgendswo/fuzzy-cms GitHub Repository
  10. */
  11. class Nginx extends Facade
  12. {
  13. protected static function getFacadeAccessor()
  14. {
  15. return 'App\Helpers\NginxHelper';
  16. }
  17. }