| Conditions | 1 |
| Paths | 1 |
| Total Lines | 5 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 20 | 20 | public function __construct(int $vendor, int $product, int $version) |
|
| 21 | { |
||
| 22 | 20 | $this->vendor = validate_uint32('Vendor ID', $vendor); |
|
| 23 | 18 | $this->product = validate_uint32('Product ID', $product); |
|
| 24 | 16 | $this->version = validate_uint32('Product version', $version); |
|
| 25 | } |
||
| 42 |