__get() public méthode

Variable names may not be prefixed with '_'.
public __get ( string $key ) : mixed
$key string The variable name.
Résultat mixed The variable value.
 /**
  * Gets a view variable. See {@link View::__get()}.
  */
 public function &__get($key)
 {
     return $this->innerView->__get($key);
 }