cli: fix up command override

This commit is contained in:
Matthew Penner 2022-12-14 18:43:20 -07:00
parent 160c3ddeff
commit 0c5416ee27
No known key found for this signature in database

View file

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