Total Complexity | 2 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
10 | final class StaticRuleHandlerResolver implements RuleHandlerResolverInterface |
||
11 | { |
||
12 | private array $validators; |
||
13 | |||
14 | 513 | public function __construct(array $validators) |
|
15 | { |
||
16 | 513 | $this->validators = $validators; |
|
17 | } |
||
18 | |||
19 | 28 | public function resolve(RuleInterface $rule): RuleHandlerInterface |
|
22 | } |
||
23 | } |
||
24 |