{$name})) { return; } $this->{$name} = $value; } /** * Get values * * @param string $name Variable name * * @return mixed Returns the value of the application member * * @todo Orange-Management/phpOMS#218 * As soon as readonly member variables are possible the magic methods should be removed. * * @since 1.0.0 */ public function __get($name) { return isset($this->{$name}) ? $this->{$name} : null; } }