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

Return an object property or a field of the current row
public __get ( string $strKey ) : mixed | null
$strKey string The field name
Результат mixed | null The field value or null
 /**
  * {@inheritDoc}
  */
 public function __get($strKey)
 {
     return $this->result->__get($strKey);
 }