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

View file

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