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 | 38.46% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | class ValidatorFactory |
||
19 | { |
||
20 | private $defaultValidator; |
||
21 | private $defaultTranslator; |
||
22 | private $constraintValidatorFactory; |
||
23 | |||
24 | 120 | public function __construct(?ValidatorInterface $validator, ConstraintValidatorFactoryInterface $constraintValidatorFactory, ?TranslatorInterface $translator) |
|
29 | 120 | } |
|
30 | |||
31 | public function createValidator(MetadataFactory $metadataFactory): ValidatorInterface |
||
47 |