We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Total Complexity | 4 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Coverage | 85.71% |
| 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 |
|
| 45 |