Ejemplo n.º 1
0
 /**
  * bind values from filter to statement
  *
  * @param PDOStatement $stmt
  * @param DFCInterface $filter
  */
 public static function bindValuesForFilter(PDOStatement &$stmt, DFCInterface $filter)
 {
     $filter->bindValuesForFilter(new self::$CLASS_NAME(), $stmt);
 }
Ejemplo n.º 2
0
 /**
  *
  *
  * @param DFCInterface $value
  */
 public function append($value)
 {
     $value->setUniqId($this->getUniqId() . '_' . $this->count());
     parent::append($value);
 }