Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | final class ImporterSectionsResolver implements ImporterSectionsResolverInterface |
||
17 | { |
||
18 | /** @var SectionsAssignerInterface */ |
||
19 | private $sectionsAssigner; |
||
20 | |||
21 | public function __construct(SectionsAssignerInterface $sectionsAssigner) |
||
22 | { |
||
23 | $this->sectionsAssigner = $sectionsAssigner; |
||
24 | } |
||
25 | |||
26 | public function resolve(SectionableInterface $sectionable, ?string $sectionsRow): void |
||
38 | } |
||
39 | } |
||
40 |