FOF30\Pimple\Container::offsetExists PHP Method

offsetExists() public method

Checks if a parameter or an object is set.
public offsetExists ( string $id ) : boolean
$id string The unique identifier for the parameter or object
return boolean
    public function offsetExists($id)
    {
        return isset($this->keys[$id]);
    }