We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 84.62% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class ValidatorFactory |
||
14 | { |
||
15 | private $defaultValidator; |
||
16 | private $defaultTranslator; |
||
17 | private $constraintValidatorFactory; |
||
18 | |||
19 | 106 | public function __construct(?ValidatorInterface $validator, ConstraintValidatorFactoryInterface $constraintValidatorFactory, ?TranslatorInterface $translator) |
|
24 | 106 | } |
|
25 | |||
26 | 10 | public function createValidator(MetadataFactory $metadataFactory): ValidatorInterface |
|
42 |