bind("{$attributeCode}.from", $attributeValue['from']); } if (isset($attributeValue['to']) && '' !== $attributeValue['to']) { $this->bind("{$attributeCode}.to", $attributeValue['to']); } } elseif (!is_array($attributeValue)) { $this->bind($attributeCode, $attributeValue); } elseif (isset($attributeValue['like'])) { $this->bind($attributeCode, $attributeValue['like']); } elseif (isset($attributeValue['in'])) { $this->bind($attributeCode, $attributeValue['in']); } elseif (isset($attributeValue['in_set'])) { $this->bind($attributeCode, $attributeValue['in_set']); } } }