Clinner\Command\Command::getOutputAsArray PHP Method

getOutputAsArray() public method

If no output has been generated by this command, an empty array will be returned.
See also: explode
public getOutputAsArray ( string $delimiter = ' ' ) : array
$delimiter string The boundary string.
return array
    public function getOutputAsArray($delimiter = ' ')
    {
        return array_values(array_filter(explode($delimiter, strval($this->_output))));
    }