/**
  * @param string  $index
  * @param boolean $reset
  * @param array   $options
  */
 public function __construct($index, $reset, $options)
 {
     parent::__construct($index);
     $this->reset = $reset;
     $this->options = $options;
 }
Exemplo n.º 2
0
 /**
  * @param string $index
  * @param bool   $populating
  * @param bool   $force
  */
 public function __construct($index, $populating, $force)
 {
     parent::__construct($index);
     $this->force = $force;
     $this->populating = $populating;
 }