Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
InQueryModifier.php
Go to the documentation of this file.
1 <?php
7 
9 
14 {
18  private $values;
19 
25  public function __construct(
26  $values = []
27  ) {
28  $this->values = $values;
29  }
30 
34  public function modify(Select $select)
35  {
36  foreach ($this->values as $field => $values) {
37  $select->where($field . ' IN (?)', $values);
38  }
39  }
40 }