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