Resque\Helpers\Table::__toString PHP Method

__toString() 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 __toString ( ) : string
return string
    public function __toString()
    {
        $this->table->render($this->output);
        return rtrim($this->output->written());
        // Remove trailing \n
    }