| Total Complexity | 4 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 75% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | final class StaticRuleHandlerResolver implements RuleHandlerResolverInterface |
||
| 12 | { |
||
| 13 | private array $handlers; |
||
| 14 | |||
| 15 | 518 | public function __construct(array $handlers) |
|
| 16 | { |
||
| 17 | 518 | $this->handlers = $handlers; |
|
| 18 | } |
||
| 19 | |||
| 20 | 28 | public function resolve(string $className): RuleHandlerInterface |
|
| 30 | } |
||
| 31 | } |
||
| 32 |