Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Wildcard.php
Go to the documentation of this file.
1 <?php
7 
10 
17 {
21  protected $field;
22 
29  public function __construct($name, $value, $field)
30  {
31  parent::__construct($name, $value);
32  $this->field = $field;
33  }
34 
38  public function getType()
39  {
41  }
42 
49  public function getField()
50  {
51  return $this->field;
52  }
53 }