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 | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class ValidatorFactory |
||
14 | { |
||
15 | private $defaultValidator; |
||
16 | private $defaultTranslator; |
||
17 | private $constraintValidatorFactory; |
||
18 | |||
19 | 131 | public function __construct(?ValidatorInterface $validator, ConstraintValidatorFactoryInterface $constraintValidatorFactory, ?TranslatorInterface $translator) |
|
24 | 131 | } |
|
25 | |||
26 | 8 | public function createValidator(MetadataFactory $metadataFactory): ValidatorInterface |
|
42 |