| Total Complexity | 3 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 15 | final class PlainMap implements MapInterface |
||
| 16 | { |
||
| 17 | use MapTrait { |
||
|
|
|||
| 18 | __clone as __mapclone; |
||
| 19 | } |
||
| 20 | |||
| 21 | private stdClass $testVar; |
||
| 22 | |||
| 23 | public function __construct(iterable $values = [], stdClass $testVar = null) |
||
| 24 | { |
||
| 25 | $this->testVar = $testVar ?? new stdClass; |
||
| 26 | $this->init($values); |
||
| 27 | } |
||
| 28 | |||
| 29 | public function getTestVar(): stdClass |
||
| 32 | } |
||
| 33 | |||
| 34 | public function __clone() |
||
| 38 | } |
||
| 39 | } |
||
| 40 |