Skip to content

Commit

Permalink
Fix php artisan up (#4457)
Browse files Browse the repository at this point in the history
  • Loading branch information
lancepioch authored Oct 21, 2022
1 parent 5331fd2 commit 860b2d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Console/Commands/Overrides/UpCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ public function handle(): int
return 1;
}

return parent::handle();
return parent::handle() ?? 0;
}
}

0 comments on commit 860b2d8

Please sign in to comment.