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