Total Complexity | 3 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
22 | class SecurityTxtFacade extends \Illuminate\Support\Facades\Facade |
||
23 | { |
||
24 | /** |
||
25 | * Get the registered name of the component. |
||
26 | * |
||
27 | * @return string |
||
28 | */ |
||
29 | 3 | protected static function getFacadeAccessor() |
|
32 | } |
||
33 | |||
34 | /** |
||
35 | * Handle dynamic, static calls to the object. |
||
36 | * |
||
37 | * @param string $method |
||
38 | * @param array $args |
||
39 | * |
||
40 | * @return mixed |
||
41 | * @throws RuntimeException |
||
42 | */ |
||
43 | 2 | public static function __callStatic($method, $args) |
|
54 |