Components_Pear_Environment::_checkSetup PHP 메소드

_checkSetup() 개인적인 메소드

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