__get() public method

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