| Total Complexity | 4 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | final class MEADimensions implements SegmentInterface |
||
| 10 | { |
||
| 11 | public const NAME = 'MEA'; |
||
| 12 | |||
| 13 | /** @var array */ |
||
| 14 | private $rawValues; |
||
| 15 | |||
| 16 | 3 | public function __construct(array $rawValues) |
|
| 17 | { |
||
| 18 | 3 | $this->rawValues = $rawValues; |
|
| 19 | 3 | } |
|
| 20 | |||
| 21 | 3 | public function name(): string |
|
| 22 | { |
||
| 23 | 3 | return self::NAME; |
|
| 24 | } |
||
| 25 | |||
| 26 | 3 | public function subSegmentKey(): string |
|
| 29 | } |
||
| 30 | |||
| 31 | 1 | public function rawValues(): array |
|
| 34 | } |
||
| 35 | } |
||
| 36 |