Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
MatchContainer.php
Go to the documentation of this file.
1 <?php
8 
10 
11 // @codeCoverageIgnore
12 
20 {
24  private $request;
25 
29  private $conditionType;
30 
36  public function __construct(QueryInterface $request, $conditionType)
37  {
38  $this->request = $request;
39  $this->conditionType = $conditionType;
40  }
41 
47  public function getRequest()
48  {
49  return $this->request;
50  }
51 
57  public function getConditionType()
58  {
59  return $this->conditionType;
60  }
61 }
__construct(QueryInterface $request, $conditionType)