Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php namespace GenericCollections; |
||
41 | public function __construct($keyType, $valueType, array $values = [], $comparisonIdentical = true) |
||
42 | { |
||
43 | $this->keyType = new TypeKeyProperty($keyType); |
||
44 | $this->valueType = new TypeProperty($valueType); |
||
45 | $this->comparisonIdentical = (bool) $comparisonIdentical; |
||
46 | $this->putAll($values); |
||
47 | } |
||
48 | |||
67 |