Airship\Engine\State::offsetUnset PHP 메소드

offsetUnset() 공개 메소드

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