Total Complexity | 3 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class Janitor extends Facade |
||
14 | { |
||
15 | /** |
||
16 | * Get the registered name of the component. |
||
17 | * |
||
18 | * @return string |
||
19 | */ |
||
20 | protected static function getFacadeAccessor() |
||
21 | { |
||
22 | return Factory::class; |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * Binds the Janitor routes into the controller. |
||
27 | * |
||
28 | * @param callable|null $callback |
||
29 | * @param array $options |
||
30 | * @return void |
||
31 | */ |
||
32 | public static function routes($callback = null, array $options = []) |
||
47 | }); |
||
48 | } |
||
50 |