| Total Complexity | 7 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 15 | class RuleLoader |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var EntityRepositoryInterface |
||
| 19 | */ |
||
| 20 | private $repository; |
||
| 21 | |||
| 22 | public function __construct(EntityRepositoryInterface $repository) |
||
| 23 | { |
||
| 24 | $this->repository = $repository; |
||
| 25 | } |
||
| 26 | |||
| 27 | public function load(Context $context): RuleCollection |
||
| 48 | } |
||
| 49 | } |
||
| 50 |