private function _addBindArrayValue(array $array) { foreach ($array as $value) { if ($value instanceof Restriction) { $this->_boundValues = array_merge($this->_boundValues, $value->getValues()); } else { $this->_boundValues[] = $value; } } }