Phastlight\Object::storageGet PHP Method

storageGet() final public method

final public storageGet ( $key )
    public final function storageGet($key)
    {
        $result = null;
        if (isset($this->storage[$key])) {
            $result = $this->storage[$key];
        }
        return $result;
    }