Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Bucket.php
Go to the documentation of this file.
1 <?php
7 
11 
15 class Bucket implements BucketInterface
16 {
22  protected $name;
23 
29  protected $values;
30 
35  public function __construct($name, $values)
36  {
37  $this->name = $name;
38  $this->values = $values;
39  }
40 
44  public function getName()
45  {
46  return $this->name;
47  }
48 
52  public function getValues()
53  {
54  return $this->values;
55  }
56 }