1 | <?php |
||
8 | class AppsServiceProvider extends ServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * Bootstrap the service provider. |
||
12 | * |
||
13 | * @return void |
||
14 | */ |
||
15 | 5 | public function boot() |
|
21 | |||
22 | /** |
||
23 | * Publish assets from package. |
||
24 | * |
||
25 | * @return void |
||
26 | */ |
||
27 | 5 | protected function publishAssets() |
|
28 | { |
||
29 | 5 | if ($this->app->runningInConsole()) { |
|
30 | 5 | $this->publishes([ |
|
31 | 5 | __DIR__.'/../config/apps.php' => config_path('apps.php'), |
|
32 | 5 | ], 'laravel-apps'); |
|
33 | 5 | } |
|
34 | 5 | } |
|
35 | |||
36 | /** |
||
37 | * Register the service provider. |
||
38 | * |
||
39 | * @return void |
||
40 | */ |
||
41 | 5 | public function register() |
|
51 | |||
52 | /** |
||
53 | * Setup package assets. |
||
54 | * |
||
55 | * @return void |
||
56 | */ |
||
57 | 5 | protected function setupAssets() |
|
61 | |||
62 | /** |
||
63 | * Register app manager singleton. |
||
64 | * |
||
65 | * @return void |
||
66 | */ |
||
67 | 5 | protected function registerAppManager() |
|
75 | |||
76 | /** |
||
77 | * Register the configured service providers. |
||
78 | * |
||
79 | * @return void |
||
80 | */ |
||
81 | 5 | protected function registerConfiguredProviders() |
|
95 | |||
96 | /** |
||
97 | * Setup application configurations. |
||
98 | * |
||
99 | * @return void |
||
100 | */ |
||
101 | 5 | protected function setupConfiguration() |
|
117 | } |
||
118 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.