{$name})) { return; } $this->{$name} = $value; } /** * Get values * * @param string $name Variable name * * @return mixed Returns the value of the application member * * @since 1.0.0 */ public function __get(string $name) : mixed { return isset($this->{$name}) ? $this->{$name} : null; } }