1 | <?php |
||
15 | class SectionService implements SectionServiceInterface |
||
16 | { |
||
17 | /** @var Symfony\Component\EventDispatcher\EventDispatcherInterface */ |
||
18 | protected $eventDispatcher; |
||
19 | |||
20 | public function __construct(SectionServiceInterface $innerService, EventDispatcherInterface $eventDispatcher) |
||
26 | |||
27 | public function createSection(SectionCreateStruct $sectionCreateStruct) |
||
31 | |||
32 | public function updateSection(Section $section, SectionUpdateStruct $sectionUpdateStruct) |
||
36 | |||
37 | public function loadSection($sectionId) |
||
41 | |||
42 | public function loadSections() |
||
46 | |||
47 | public function loadSectionByIdentifier($sectionIdentifier) |
||
51 | |||
52 | public function countAssignedContents(Section $section) |
||
56 | |||
57 | public function isSectionUsed(Section $section) |
||
61 | |||
62 | public function assignSection(ContentInfo $contentInfo, Section $section) |
||
66 | |||
67 | public function assignSectionToSubtree(Location $location, Section $section): void |
||
71 | |||
72 | public function deleteSection(Section $section) |
||
76 | |||
77 | public function newSectionCreateStruct() |
||
81 | |||
82 | public function newSectionUpdateStruct() |
||
86 | } |
||
87 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.