| Total Complexity | 4 | 
| Total Lines | 30 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 8 | class FactoryRegistry  | 
            ||
| 9 | { | 
            ||
| 10 | /**  | 
            ||
| 11 | * @var FactoryInterface[]|iterable  | 
            ||
| 12 | */  | 
            ||
| 13 | private $factories;  | 
            ||
| 14 | |||
| 15 | /**  | 
            ||
| 16 | * @param FactoryInterface[]|iterable $factories  | 
            ||
| 17 | */  | 
            ||
| 18 | 2 | public function __construct(iterable $factories)  | 
            |
| 21 | 2 | }  | 
            |
| 22 | |||
| 23 | /**  | 
            ||
| 24 | * @param SymfonyConstraint $constraint  | 
            ||
| 25 | *  | 
            ||
| 26 | * @return FactoryInterface  | 
            ||
| 27 | * @throws ConstraintException  | 
            ||
| 28 | */  | 
            ||
| 29 | 2 | public function findForConstraint(SymfonyConstraint $constraint): FactoryInterface  | 
            |
| 40 |