Skip to content

Commit

Permalink
Add call to parent::register() in ConsoleServiceProvider.php.
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Poyigi <[email protected]>
  • Loading branch information
sampoyigi committed Aug 8, 2023
1 parent 8add0ba commit 75d5256
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Flame/Providers/ConsoleServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ abstract class ConsoleServiceProvider extends IlluminateEventServiceProvider

public function register()
{
parent::register();

foreach ($this->commands as $command => $class) {
if (is_string($command)) {
$key = 'command.igniter.'.$command;
Expand Down

0 comments on commit 75d5256

Please sign in to comment.