Exemplo n.º 1
0
 /**
  * @param Iterator $iterator
  * @param bool $inHand
  */
 public function __construct($iterator, $inHand = true)
 {
     parent::__construct($iterator);
     $this->inHand = (bool) $inHand;
 }
Exemplo n.º 2
0
 /**
  * @param Iterator $iterator
  * @param bool $inHand
  */
 public function __construct($iterator, $eTicket = true)
 {
     parent::__construct($iterator);
     $this->eTicket = (bool) $eTicket;
 }
Exemplo n.º 3
0
 /**
  * @param Iterator $iterator
  * @param bool $featured
  */
 public function __construct($iterator, $featured = true)
 {
     parent::__construct($iterator);
     $this->featured = (bool) $featured;
 }