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