Components_Pear_Environment::_checkSetup PHP Method

_checkSetup() private method

Validate that the required instance parameters are set.
private _checkSetup ( ) : null
return null
    private function _checkSetup()
    {
        if ($this->_factory === null) {
            throw new Components_Exception('You need to set the factory first!');
        }
    }