Resque\Helpers\Table::__construct PHP Method

__construct() public method

This is done this way because the table helper dumps everything to the output and there is no way to catch so have to override with a special output.
public __construct ( Command $command ) : void
$command Symfony\Component\Console\Command\Command
return void
    public function __construct(Command $command)
    {
        $this->table = $command->getHelperSet()->get('table');
        $this->table->setCellHeaderFormat('<pop>%s</pop>');
        $this->output = new CatchOutput();
    }