| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class ProtocolServiceProvider extends ServiceProvider |
||
| 10 | { |
||
| 11 | |||
| 12 | public function boot() |
||
| 13 | { |
||
| 14 | $this->registerMiddleware(HttpsProtocol::class); |
||
| 15 | } |
||
| 16 | |||
| 17 | |||
| 18 | /** |
||
| 19 | * Register the Debugbar Middleware |
||
| 20 | * |
||
| 21 | * @param string $middleware |
||
| 22 | */ |
||
| 23 | protected function registerMiddleware($middleware) |
||
| 27 | } |
||
| 28 | |||
| 30 |