for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace JobQueue\Application\Worker;
use Symfony\Component\Console\Application;
final class Console extends Application
{
public function __construct()
parent::__construct('worker', 1.0);
$this->add(new Consume);
$this->setDefaultCommand('consume', true);
}