| Conditions | 3 |
| Paths | 3 |
| Total Lines | 15 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | public function boot() |
||
| 28 | { |
||
| 29 | if (!$this->app->runningInConsole()) { |
||
| 30 | return; |
||
| 31 | } |
||
| 32 | |||
| 33 | if (\function_exists('config_path')) { |
||
| 34 | $this->publishes([ |
||
| 35 | __DIR__ . '/../config/loginlog.php' => config_path('loginlog.php') |
||
| 36 | ], 'laravel-user-login-log-config'); |
||
| 37 | } |
||
| 38 | |||
| 39 | $this->publishes([ |
||
| 40 | __DIR__ . '/../database/migrations' => database_path('migrations'), |
||
| 41 | ], 'laravel-user-login-log-migrations'); |
||
| 42 | } |
||
| 44 |
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.