Total Complexity | 3 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | final class SectionsAssigner implements SectionsAssignerInterface |
||
19 | { |
||
20 | /** @var SectionRepositoryInterface */ |
||
21 | private $sectionRepository; |
||
22 | |||
23 | public function __construct(SectionRepositoryInterface $sectionRepository) |
||
24 | { |
||
25 | $this->sectionRepository = $sectionRepository; |
||
26 | } |
||
27 | |||
28 | public function assign(SectionableInterface $sectionsAware, array $sectionsCodes): void |
||
36 | } |
||
37 | } |
||
39 |