Airship\Engine\State::offsetUnset PHP Method

offsetUnset() public method

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]);
        }
    }