]> BookStack Code Mirror - bookstack/blob - app/Facades/Theme.php
Extend /users API endpoint
[bookstack] / app / Facades / Theme.php
1 <?php namespace BookStack\Facades;
2
3 use BookStack\Theming\ThemeService;
4 use Illuminate\Support\Facades\Facade;
5
6 class Theme extends Facade
7 {
8     /**
9      * Get the registered name of the component.
10      *
11      * @return string
12      */
13     protected static function getFacadeAccessor()
14     {
15         return ThemeService::class;
16     }
17 }