| Total Complexity | 3 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class Application extends BaseApplication |
||
| 10 | { |
||
| 11 | |||
| 12 | |||
| 13 | /** |
||
| 14 | * Register all of the base service providers. |
||
| 15 | * |
||
| 16 | * @return void |
||
| 17 | */ |
||
| 18 | 288 | protected function registerBaseServiceProviders() |
|
| 19 | { |
||
| 20 | 288 | parent::registerBaseServiceProviders(); |
|
| 21 | 288 | $this->register(new ExpendableRoutingServiceProvider($this)); |
|
| 22 | } |
||
| 23 | |||
| 24 | |||
| 25 | /** |
||
| 26 | * Override default application storage path. |
||
| 27 | * |
||
| 28 | * @return mixed |
||
| 29 | */ |
||
| 30 | 288 | public function storagePath() |
|
| 35 | } |
||
| 36 | } |