@@ -22,6 +22,7 @@ |
||
22 | 22 | * Set AuditReaderInterface service id for array of $classes. |
23 | 23 | * |
24 | 24 | * @param class-string[] $classes |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function setReader(string $serviceId, array $classes): void; |
27 | 28 |
@@ -33,16 +33,19 @@ discard block |
||
33 | 33 | |
34 | 34 | /** |
35 | 35 | * @throws ModelManagerException |
36 | + * @return void |
|
36 | 37 | */ |
37 | 38 | public function create(object $object): void; |
38 | 39 | |
39 | 40 | /** |
40 | 41 | * @throws ModelManagerException |
42 | + * @return void |
|
41 | 43 | */ |
42 | 44 | public function update(object $object): void; |
43 | 45 | |
44 | 46 | /** |
45 | 47 | * @throws ModelManagerException |
48 | + * @return void |
|
46 | 49 | */ |
47 | 50 | public function delete(object $object): void; |
48 | 51 | |
@@ -80,6 +83,7 @@ discard block |
||
80 | 83 | * @param class-string $class |
81 | 84 | * |
82 | 85 | * @throws ModelManagerException |
86 | + * @return void |
|
83 | 87 | */ |
84 | 88 | public function batchDelete(string $class, ProxyQueryInterface $queryProxy): void; |
85 | 89 | |
@@ -149,6 +153,7 @@ discard block |
||
149 | 153 | * |
150 | 154 | * @param Collection<array-key, T> $collection |
151 | 155 | * @param T $element |
156 | + * @return void |
|
152 | 157 | */ |
153 | 158 | public function collectionRemoveElement(Collection $collection, object $element): void; |
154 | 159 | |
@@ -159,6 +164,7 @@ discard block |
||
159 | 164 | * |
160 | 165 | * @param Collection<array-key, object> $collection |
161 | 166 | * @param T $element |
167 | + * @return void |
|
162 | 168 | */ |
163 | 169 | public function collectionAddElement(Collection $collection, object $element): void; |
164 | 170 | |
@@ -176,6 +182,7 @@ discard block |
||
176 | 182 | * Clear the collection. |
177 | 183 | * |
178 | 184 | * @param Collection<array-key, object> $collection |
185 | + * @return void |
|
179 | 186 | */ |
180 | 187 | public function collectionClear(Collection $collection): void; |
181 | 188 | |
@@ -227,6 +234,7 @@ discard block |
||
227 | 234 | * @param class-string $class |
228 | 235 | * |
229 | 236 | * @param string[] $idx |
237 | + * @return void |
|
230 | 238 | */ |
231 | 239 | public function addIdentifiersToQuery(string $class, ProxyQueryInterface $query, array $idx): void; |
232 | 240 | } |