Phrozn\Runner\CommandLine\Parser::__toString PHP Method

__toString() public method

public __toString ( )
    public function __toString()
    {
        $out = get_class($this) . "\n";
        $out .= "OPTIONS: " . print_r($this->options, true);
        $out .= "ARGUMENTS: " . print_r($this->args, true);
        $out .= "COMMANDS: " . print_r(array_keys($this->commands), true);
        return $out;
    }