1 | <?php |
||
12 | class AdminLTETemplateServiceProvider extends ServiceProvider |
||
13 | { |
||
14 | use AppNamespaceDetectorTrait; |
||
15 | |||
16 | /** |
||
17 | * Register the application services. |
||
18 | */ |
||
19 | public function register() |
||
33 | |||
34 | /** |
||
35 | * Bootstrap the application services. |
||
36 | */ |
||
37 | public function boot() |
||
48 | |||
49 | /** |
||
50 | * Define the AdminLTETemplate routes. |
||
51 | */ |
||
52 | protected function defineRoutes() |
||
62 | |||
63 | /** |
||
64 | * Publish Home Controller. |
||
65 | */ |
||
66 | private function publishHomeController() |
||
70 | |||
71 | /** |
||
72 | * Change default Laravel AuthController. |
||
73 | */ |
||
74 | private function changeAuthController() |
||
78 | |||
79 | /** |
||
80 | * Publish public resource assets to Laravel project. |
||
81 | */ |
||
82 | private function publishPublicAssets() |
||
86 | |||
87 | /** |
||
88 | * Publish package views to Laravel project. |
||
89 | */ |
||
90 | private function publishViews() |
||
96 | |||
97 | /** |
||
98 | * Publish package resource assets to Laravel project. |
||
99 | */ |
||
100 | private function publishResourceAssets() |
||
104 | |||
105 | /** |
||
106 | * Publish package tests to Laravel project. |
||
107 | */ |
||
108 | private function publishTests() |
||
112 | |||
113 | /** |
||
114 | * Publish package language to Laravel project. |
||
115 | */ |
||
116 | private function publishLanguages() |
||
124 | } |
||
125 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.