1 | <?php |
||
17 | class SubscriptionsServiceProvider extends ServiceProvider |
||
18 | { |
||
19 | use ConsoleTools; |
||
20 | |||
21 | /** |
||
22 | * The commands to be registered. |
||
23 | * |
||
24 | * @var array |
||
25 | */ |
||
26 | protected $commands = [ |
||
27 | MigrateCommand::class => 'command.rinvex.subscriptions.migrate', |
||
28 | PublishCommand::class => 'command.rinvex.subscriptions.publish', |
||
29 | RollbackCommand::class => 'command.rinvex.subscriptions.rollback', |
||
30 | ]; |
||
31 | |||
32 | /** |
||
33 | * Register the application services. |
||
34 | * |
||
35 | * @return void |
||
36 | */ |
||
37 | public function register(): void |
||
52 | |||
53 | /** |
||
54 | * Bootstrap the application services. |
||
55 | * |
||
56 | * @return void |
||
57 | */ |
||
58 | public function boot(): void |
||
65 | } |
||
66 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.