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

offsetUnset() public méthode

Delete an entry from the registry
public offsetUnset ( mixed $key )
$key mixed
    public function offsetUnset($key)
    {
        if ($this->offsetExists($key)) {
            unset($this->engine_state_registry[$key]);
        }
    }