/** * 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); }
/** * * * @param DFCInterface $value */ public function append($value) { $value->setUniqId($this->getUniqId() . '_' . $this->count()); parent::append($value); }