{$name})) { return; } $this->{$name} = $value; } /** * Get values * * @param string $name Variable name * * @return mixed Returns the value of the application member * * @todo replace with proper getter (faster) * * @since 1.0.0 */ public function __get($name) { return $this->{$name}; } }