| Total Complexity | 5 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | final class Properties extends ImmutableCollection implements MapsProperties |
||
| 19 | { |
||
| 20 | public function __construct(MapsProperty ...$properties) |
||
| 21 | { |
||
| 22 | parent::__construct(...$properties); |
||
| 23 | } |
||
| 24 | |||
| 25 | public static function map( |
||
| 30 | } |
||
| 31 | |||
| 32 | public function current() : MapsProperty |
||
| 33 | { |
||
| 34 | return parent::current(); |
||
| 35 | } |
||
| 36 | |||
| 37 | public function writeData($object, Closure $setter, array $data) : void |
||
| 41 | } |
||
| 42 | } |
||
| 44 |