You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 11, 2022. It is now read-only.
An Exception is thrown when no Logger is passed to ConsoleRunner::createHelperSet, which is the default in cli-config.php.
This is due to Command::getResque always calling Symfony\Component\Console\Command\Command::getHelper('logger'), which in turn throws an InvalidArgumentException.
Command::getResque's if doesn't make any sense in this context, it should rather be testing for $this->getHelperSet()->has('logger').
The text was updated successfully, but these errors were encountered:
An Exception is thrown when no Logger is passed to ConsoleRunner::createHelperSet, which is the default in cli-config.php.
This is due to Command::getResque always calling Symfony\Component\Console\Command\Command::getHelper('logger'), which in turn throws an InvalidArgumentException.
Command::getResque's if doesn't make any sense in this context, it should rather be testing for
$this->getHelperSet()->has('logger')
.The text was updated successfully, but these errors were encountered: