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