| Conditions | 3 |
| Paths | 3 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 3 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php namespace GenericCollections; |
||
| 13 | * @package GenericCollections |
||
| 14 | */ |
||
| 15 | |||
| 16 | class Set extends Collection |
||
| 17 | { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param string $elementType |
||
| 21 | * @param array $elements |
||
| 22 | * @param int $options Options::COMPARISON_EQUAL |
||
| 23 | */ |
||
| 24 | 9 | public function __construct($elementType, array $elements = [], $options = Options::UNIQUE_VALUES) |
|
| 33 |