public function __construct($options = null)
 {
     parent::__construct($options);
     if (null !== $this->getBootstrap()) {
         $this->bootstrapSetInConstructor = true;
     }
 }
Exemplo n.º 2
0
 /**
  * Constructor
  *
  * @param  mixed $options
  * @return void
  */
 public function __construct($options = null)
 {
     $this->_bootstraps = new \ArrayObject(array(), \ArrayObject::ARRAY_AS_PROPS);
     parent::__construct($options);
 }