1 | <?php namespace Sofa\Revisionable\Laravel; |
||
9 | class ServiceProvider extends BaseProvider |
||
10 | { |
||
11 | /** |
||
12 | * Indicates if loading of the provider is deferred. |
||
13 | * |
||
14 | * @var bool |
||
15 | */ |
||
16 | protected $defer = false; |
||
17 | |||
18 | /** |
||
19 | * Bootstrap any application services. |
||
20 | * |
||
21 | * @return void |
||
22 | */ |
||
23 | public function boot() |
||
30 | |||
31 | /** |
||
32 | * Register the service provider. |
||
33 | * |
||
34 | * @return void |
||
35 | */ |
||
36 | public function register() |
||
46 | |||
47 | /** |
||
48 | * Bind Revisionable logger implementation to the IoC. |
||
49 | * |
||
50 | * @return void |
||
51 | */ |
||
52 | protected function bindLogger() |
||
60 | |||
61 | /** |
||
62 | * Bind user provider implementation to the IoC. |
||
63 | * |
||
64 | * @return void |
||
65 | */ |
||
66 | protected function bindUserProvider() |
||
87 | |||
88 | /** |
||
89 | * Bind adapter for Sentry to the IoC. |
||
90 | * |
||
91 | * @return void |
||
92 | */ |
||
93 | protected function bindSentryProvider() |
||
101 | |||
102 | /** |
||
103 | * Bind adapter for Sentinel to the IoC. |
||
104 | * |
||
105 | * @return void |
||
106 | */ |
||
107 | protected function bindSentinelProvider() |
||
115 | |||
116 | /** |
||
117 | * Bind adapter for JWT Auth to the IoC. |
||
118 | * |
||
119 | * @return void |
||
120 | */ |
||
121 | private function bindJwtAuthProvider() |
||
129 | |||
130 | /** |
||
131 | * Bind adapter for Illuminate Guard to the IoC. |
||
132 | * |
||
133 | * @return void |
||
134 | */ |
||
135 | protected function bindGuardProvider() |
||
143 | |||
144 | /** |
||
145 | * Bind listener implementation to the Ioc. |
||
146 | * |
||
147 | * @return void |
||
148 | */ |
||
149 | protected function bindListener() |
||
155 | |||
156 | /** |
||
157 | * Boot the Revision model. |
||
158 | * |
||
159 | * @return void |
||
160 | */ |
||
161 | protected function bootModel() |
||
167 | |||
168 | /** |
||
169 | * Get the services provided by the provider. |
||
170 | * |
||
171 | * @return string[] |
||
172 | */ |
||
173 | public function provides() |
||
180 | |||
181 | /** |
||
182 | * Guess real path of the package. |
||
183 | * |
||
184 | * @return string |
||
185 | */ |
||
186 | public function guessPackagePath() |
||
192 | } |
||
193 |
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.