1 | <?php |
||
17 | class ObjectStateService implements ObjectStateServiceInterface |
||
18 | { |
||
19 | /** @var Symfony\Component\EventDispatcher\EventDispatcherInterface */ |
||
20 | protected $eventDispatcher; |
||
21 | |||
22 | public function __construct(ObjectStateServiceInterface $innerService, EventDispatcherInterface $eventDispatcher) |
||
28 | |||
29 | public function createObjectStateGroup(ObjectStateGroupCreateStruct $objectStateGroupCreateStruct) |
||
33 | |||
34 | public function loadObjectStateGroup($objectStateGroupId, array $prioritizedLanguages = []) |
||
38 | |||
39 | public function loadObjectStateGroups($offset = 0, $limit = -1, array $prioritizedLanguages = []) |
||
43 | |||
44 | public function loadObjectStates(ObjectStateGroup $objectStateGroup, array $prioritizedLanguages = []) |
||
48 | |||
49 | public function updateObjectStateGroup(ObjectStateGroup $objectStateGroup, ObjectStateGroupUpdateStruct $objectStateGroupUpdateStruct) |
||
53 | |||
54 | public function deleteObjectStateGroup(ObjectStateGroup $objectStateGroup) |
||
58 | |||
59 | public function createObjectState(ObjectStateGroup $objectStateGroup, ObjectStateCreateStruct $objectStateCreateStruct) |
||
63 | |||
64 | public function loadObjectState($stateId, array $prioritizedLanguages = []) |
||
68 | |||
69 | public function updateObjectState(ObjectState $objectState, ObjectStateUpdateStruct $objectStateUpdateStruct) |
||
73 | |||
74 | public function setPriorityOfObjectState(ObjectState $objectState, $priority) |
||
78 | |||
79 | public function deleteObjectState(ObjectState $objectState) |
||
83 | |||
84 | public function setContentState(ContentInfo $contentInfo, ObjectStateGroup $objectStateGroup, ObjectState $objectState) |
||
88 | |||
89 | public function getContentState(ContentInfo $contentInfo, ObjectStateGroup $objectStateGroup) |
||
93 | |||
94 | public function getContentCount(ObjectState $objectState) |
||
98 | |||
99 | public function newObjectStateGroupCreateStruct($identifier) |
||
103 | |||
104 | public function newObjectStateGroupUpdateStruct() |
||
108 | |||
109 | public function newObjectStateCreateStruct($identifier) |
||
113 | |||
114 | public function newObjectStateUpdateStruct() |
||
118 | } |
||
119 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.