Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Metric.php
Go to the documentation of this file.
1 <?php
7 
11 class Metric
12 {
16  protected $type;
17 
22  public function __construct($type)
23  {
24  $this->type = $type;
25  }
26 
33  public function getType()
34  {
35  return $this->type;
36  }
37 }