Jyxo\Svn\Result::__get PHP Метод

__get() публичный Метод

Magic __get method.
public __get ( string $prop ) : mixed
$prop string Property name
Результат mixed
    public function __get(string $prop)
    {
        return isset($this->{$prop}) ? $this->{$prop} : null;
    }