| 1 | <?php |
||
| 8 | class TokenServiceProvider extends ServiceProvider |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Bootstrap the application services. |
||
| 12 | * |
||
| 13 | * @return void |
||
| 14 | */ |
||
| 15 | public function boot() |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Register the service provider. |
||
| 30 | * |
||
| 31 | * @return void |
||
| 32 | */ |
||
| 33 | public function register() |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Register the token guard. |
||
| 45 | * |
||
| 46 | * @return void |
||
| 47 | */ |
||
| 48 | protected function registerGuard() |
||
| 56 | |||
| 57 | /** |
||
| 58 | * Make an instance of the token guard. |
||
| 59 | * |
||
| 60 | * @param array $config |
||
| 61 | * @return \Illuminate\Contracts\Auth\Guard |
||
| 62 | */ |
||
| 63 | protected function makeGuard(array $config) |
||
| 70 | } |
||
| 71 |
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.