Total Complexity | 2 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class FoundationServiceProvider extends ServiceProvider |
||
11 | { |
||
12 | /** |
||
13 | * Register the service provider. |
||
14 | * |
||
15 | * @return void |
||
16 | */ |
||
17 | public function register() |
||
18 | { |
||
19 | $this->registerRequestSignatureValidation(); |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * Register the signature macros on the request. |
||
24 | * @todo is URL::getRequest the same as $this |
||
25 | * @return void |
||
26 | */ |
||
27 | public function registerRequestSignatureValidation() |
||
43 | }); |
||
44 | } |
||
46 |