Total Complexity | 9 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
17 | class PkLogicValidator implements ValidationInterface |
||
18 | { |
||
19 | use AttributeHelperTrait; |
||
20 | |||
21 | private SchemaAttributeInterface $property; |
||
22 | |||
23 | 255 | public function __construct(SchemaAttributeInterface $property) |
|
24 | { |
||
25 | 255 | $this->property = $property; |
|
26 | 255 | } |
|
27 | |||
28 | 255 | public function validate(): void |
|
45 | } |
||
46 | } |
||
49 |