| 1 | <?php |
||
| 10 | class ServiceProvider extends IlluminateServiceProvider |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Register the service provider. |
||
| 14 | * |
||
| 15 | * @return void |
||
| 16 | */ |
||
| 17 | public function register() |
||
| 22 | |||
| 23 | public function boot() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Helper method to quickly setup middleware. |
||
| 33 | * |
||
| 34 | * @param string $alias |
||
| 35 | * @param string $class |
||
| 36 | */ |
||
| 37 | protected function registerMiddleware($alias, $class) |
||
| 41 | } |
||
| 42 |