Fix `php artisan up` (#4457)

This commit is contained in:
Lance Pioch 2022-10-21 13:31:59 -04:00 committed by GitHub
parent 5331fd2cdb
commit 860b2d890b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -21,6 +21,6 @@ class UpCommand extends BaseUpCommand
return 1;
}
return parent::handle();
return parent::handle() ?? 0;
}
}