]> BookStack Code Mirror - bookstack/blob - app/Facades/Theme.php
9f4f61ecb47cfeb3938a6e399d3906e9bc7cdce2
[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 }