예제 #1
0
 /**
  * Constructor
  *
  * @param  mixed $options
  */
 public function __construct($options = null)
 {
     $this->_bootstraps = new ArrayObject(array(), ArrayObject::ARRAY_AS_PROPS);
     parent::__construct($options);
 }
예제 #2
0
 public function __construct($options = null)
 {
     parent::__construct($options);
     if (null !== $this->getBootstrap()) {
         $this->bootstrapSetInConstructor = true;
     }
 }
예제 #3
0
파일: Mail.php 프로젝트: lchen01/STEdwards
 public function __construct($options = null)
 {
     $this->_zendResource = new Zend_Application_Resource_Mail($options);
     parent::__construct($options);
 }