12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\DB\Select;
- use Magento\Framework\DB\Select;
- /**
- * Add IN condition to select
- */
- class InQueryModifier implements QueryModifierInterface
- {
- /**
- * @var array
- */
- private $values;
- /**
- * Constructor
- *
- * @param array $values
- */
- public function __construct(
- $values = []
- ) {
- $this->values = $values;
- }
- /**
- * {@inheritdoc}
- */
- public function modify(Select $select)
- {
- foreach ($this->values as $field => $values) {
- $select->where($field . ' IN (?)', $values);
- }
- }
- }
|