| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 18 | class ImmutableValueImpl extends ImmutableValue |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * ImmutableValueImpl constructor. |
||
| 22 | * @param string $string |
||
| 23 | * @param array $array |
||
| 24 | * @param DateTime $dateTime |
||
| 25 | * @param string $UpperCaseField |
||
| 26 | * @throws InvalidArgumentException |
||
| 27 | */ |
||
| 28 | public function __construct(string $string, array $array, DateTime $dateTime, string $UpperCaseField) |
||
| 29 | { |
||
| 30 | $this->init('string', $string); |
||
| 31 | $this->init('array', $array); |
||
| 32 | $this->init('dateTime', $dateTime); |
||
| 33 | $this->init('UpperCaseField', $UpperCaseField); |
||
| 34 | } |
||
| 35 | |||
| 36 | public function revealArray() |
||
| 39 | } |
||
| 40 | } |
||
| 41 |