Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | public function boot() |
||
20 | { |
||
21 | $router = $this->app->make(Router::class); |
||
|
|||
22 | $router->aliasMiddleware('dynamic.mail.config', DynamicMailConfig::class); |
||
23 | |||
24 | $this->loadMigrationsFrom(self::DB); |
||
25 | |||
26 | $this->publishes([ |
||
27 | self::CONFIG => config_path('dynamicmailconfig.php'), |
||
28 | ], 'dmc-config'); |
||
29 | |||
30 | $this->publishes([ |
||
31 | self::DB => database_path('migrations'), |
||
32 | ], 'dmc-migrations'); |
||
33 | } |
||
47 |
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.