| Total Complexity | 3 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | final class ContainerRuleHandlerResolver implements RuleHandlerResolverInterface |
||
| 13 | { |
||
| 14 | private ContainerInterface $container; |
||
| 15 | |||
| 16 | public function __construct(ContainerInterface $container) |
||
| 17 | { |
||
| 18 | $this->container = $container; |
||
| 19 | } |
||
| 20 | |||
| 21 | public function resolve(RuleInterface $rule): RuleHandlerInterface |
||
| 27 | } |
||
| 28 | } |
||
| 30 |