Airship\Engine\State::__get PHP Méthode

__get() public méthode

Grab some data
public __get ( string $key = null ) : mixed
$key string
Résultat mixed
    public function __get($key = null)
    {
        if (empty($key)) {
            return null;
        }
        if (isset($this->engine_state_registry[$key])) {
            return $this->engine_state_registry[$key];
        }
        return null;
    }