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