| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | public function __construct( |
||
| 25 | array $keyInfo = [], |
||
| 26 | ) { |
||
| 27 | Assert::allIsInstanceOf($keyInfo, KeyInfo::class, SchemaViolationException::class); |
||
| 28 | Assert::minCount($keyInfo, 1, MissingElementException::class); |
||
| 29 | |||
| 30 | parent::__construct(null, null, null, null, null, $keyInfo, []); |
||
| 31 | } |
||
| 33 |