@@ -94,14 +94,14 @@ discard block |
||
| 94 | 94 | return Str::studly($this->name); |
| 95 | 95 | } |
| 96 | 96 | |
| 97 | - /** |
|
| 98 | - * Get name in snake case. |
|
| 99 | - * |
|
| 100 | - * @return string |
|
| 101 | - */ |
|
| 97 | + /** |
|
| 98 | + * Get name in snake case. |
|
| 99 | + * |
|
| 100 | + * @return string |
|
| 101 | + */ |
|
| 102 | 102 | public function getSnakeName() |
| 103 | 103 | { |
| 104 | - return Str::snake($this->name); |
|
| 104 | + return Str::snake($this->name); |
|
| 105 | 105 | } |
| 106 | 106 | |
| 107 | 107 | /** |
@@ -280,18 +280,18 @@ discard block |
||
| 280 | 280 | */ |
| 281 | 281 | protected function registerProviders() |
| 282 | 282 | { |
| 283 | - (new ProviderRepository($this->app, new Filesystem, $this->getCachedServicesPath())) |
|
| 283 | + (new ProviderRepository($this->app, new Filesystem, $this->getCachedServicesPath())) |
|
| 284 | 284 | ->load($this->get('providers', [])); |
| 285 | 285 | } |
| 286 | 286 | |
| 287 | - /** |
|
| 288 | - * Get the path to the cached *_module.php file. |
|
| 289 | - * |
|
| 290 | - * @return string |
|
| 291 | - */ |
|
| 287 | + /** |
|
| 288 | + * Get the path to the cached *_module.php file. |
|
| 289 | + * |
|
| 290 | + * @return string |
|
| 291 | + */ |
|
| 292 | 292 | public function getCachedServicesPath() |
| 293 | 293 | { |
| 294 | - return Str::replaceLast('services.php', $this->getSnakeName().'_module.php', $this->app->getCachedServicesPath()); |
|
| 294 | + return Str::replaceLast('services.php', $this->getSnakeName().'_module.php', $this->app->getCachedServicesPath()); |
|
| 295 | 295 | } |
| 296 | 296 | |
| 297 | 297 | /** |