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

Variable names may not be prefixed with '_'.
public __get ( string $key ) : mixed
$key string The variable name.
Результат mixed The variable value.
Пример #1
0
 /**
  * Gets a view variable. See {@link View::__get()}.
  */
 public function &__get($key)
 {
     return $this->innerView->__get($key);
 }