1 | <?php |
||
15 | class AdminLTETemplateServiceProvider extends ServiceProvider |
||
16 | { |
||
17 | use AppNamespaceDetectorTrait; |
||
18 | |||
19 | /** |
||
20 | * Register the application services. |
||
21 | */ |
||
22 | public function register() |
||
43 | |||
44 | /** |
||
45 | * Bootstrap the application services. |
||
46 | */ |
||
47 | public function boot() |
||
62 | |||
63 | /** |
||
64 | * Define the AdminLTETemplate routes. |
||
65 | */ |
||
66 | protected function defineRoutes() |
||
76 | |||
77 | /** |
||
78 | * Publish Home Controller. |
||
79 | */ |
||
80 | private function publishHomeController() |
||
84 | |||
85 | /** |
||
86 | * Change default Laravel RegisterController. |
||
87 | */ |
||
88 | private function changeRegisterController() |
||
92 | |||
93 | /** |
||
94 | * Change default Laravel LoginController. |
||
95 | */ |
||
96 | private function changeLoginController() |
||
100 | |||
101 | /** |
||
102 | * Change default Laravel forgot password Controller. |
||
103 | */ |
||
104 | private function changeForgotPasswordController() |
||
108 | |||
109 | /** |
||
110 | * Change default Laravel reset password Controller. |
||
111 | */ |
||
112 | private function changeResetPasswordController() |
||
116 | |||
117 | /** |
||
118 | * Publish public resource assets to Laravel project. |
||
119 | */ |
||
120 | private function publishPublicAssets() |
||
124 | |||
125 | /** |
||
126 | * Publish package views to Laravel project. |
||
127 | */ |
||
128 | private function publishViews() |
||
134 | |||
135 | /** |
||
136 | * Publish package resource assets to Laravel project. |
||
137 | */ |
||
138 | private function publishResourceAssets() |
||
142 | |||
143 | /** |
||
144 | * Publish package tests to Laravel project. |
||
145 | */ |
||
146 | private function publishTests() |
||
150 | |||
151 | /** |
||
152 | * Publish package language to Laravel project. |
||
153 | */ |
||
154 | private function publishLanguages() |
||
160 | |||
161 | /** |
||
162 | * Publish config Gravatar file using group. |
||
163 | */ |
||
164 | private function publishGravatar() |
||
168 | } |
||
169 |
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.