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() |
||
50 | |||
51 | /** |
||
52 | * Define the AdminLTETemplate routes. |
||
53 | */ |
||
54 | protected function defineRoutes() |
||
64 | |||
65 | /** |
||
66 | * Publish Home Controller. |
||
67 | */ |
||
68 | private function publishHomeController() |
||
72 | |||
73 | /** |
||
74 | * Change default Laravel AuthController. |
||
75 | */ |
||
76 | private function changeAuthController() |
||
80 | |||
81 | /** |
||
82 | * Publish public resource assets to Laravel project. |
||
83 | */ |
||
84 | private function publishPublicAssets() |
||
88 | |||
89 | /** |
||
90 | * Publish package views to Laravel project. |
||
91 | */ |
||
92 | private function publishViews() |
||
98 | |||
99 | /** |
||
100 | * Publish package resource assets to Laravel project. |
||
101 | */ |
||
102 | private function publishResourceAssets() |
||
106 | |||
107 | /** |
||
108 | * Publish package tests to Laravel project. |
||
109 | */ |
||
110 | private function publishTests() |
||
114 | } |
||
115 |
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.