Jyxo\Svn\Result::__get PHP Method

__get() public method

Magic __get method.
public __get ( string $prop ) : mixed
$prop string Property name
return mixed
    public function __get(string $prop)
    {
        return isset($this->{$prop}) ? $this->{$prop} : null;
    }