RefreshCommand uses non existing option for ResetCommand
SPie opened this issue · 1 comments
The RefreshCommand
doesn't work for me anymore with the new 3.0.0
version.
I get the error Symfony\Component\Console\Exception\InvalidOptionException: The "--em" option does not exist.
The RefreshCommand
now uses an option called --em
for the ResetCommand
migrations/src/Console/RefreshCommand.php
Lines 28 to 30 in f520bc8
but the ResetCommand
doesn't use the option em
, but connection
.
migrations/src/Console/ResetCommand.php
Lines 21 to 23 in f520bc8
I could open a MR to handle the error.
And also, if it is ok to tackle that in the same MR, I would like to add the --no-interaction
option, because right now the RefreshCommand
won't work in tests anymore.