@@ -25,7 +25,6 @@ |
||
25 | 25 | /** |
26 | 26 | * @since 1.0 |
27 | 27 | * |
28 | - * @param array $options |
|
29 | 28 | */ |
30 | 29 | public function __construct() { |
31 | 30 | $this->addCallbackHandlers(); |
@@ -197,6 +197,9 @@ |
||
197 | 197 | $this->key++; |
198 | 198 | } |
199 | 199 | |
200 | + /** |
|
201 | + * @param DIWikiPage|null $subject |
|
202 | + */ |
|
200 | 203 | private function doFilterMembersByNotificationsToAssignment( $subject ) { |
201 | 204 | |
202 | 205 | $recipients = array(); |
@@ -213,6 +213,10 @@ discard block |
||
213 | 213 | } |
214 | 214 | |
215 | 215 | // 2.4 compat |
216 | + |
|
217 | + /** |
|
218 | + * @param string $key |
|
219 | + */ |
|
216 | 220 | private function getFixedPropertyValueBy( $tableChangeOp, $key ) { |
217 | 221 | return method_exists( $tableChangeOp, 'getFixedPropertyValueFor' ) ? $tableChangeOp->getFixedPropertyValueFor( $key ) : $tableChangeOp->getFixedPropertyValueBy( $key ); |
218 | 222 | } |
@@ -222,6 +226,9 @@ discard block |
||
222 | 226 | return method_exists( $this->store->getObjectIds(), 'getDataItemForId' ) ? $this->store->getObjectIds()->getDataItemForId( $id ) : $this->store->getObjectIds()->getDataItemById( $id ); |
223 | 227 | } |
224 | 228 | |
229 | + /** |
|
230 | + * @param DIProperty $property |
|
231 | + */ |
|
225 | 232 | private function doFilterOnFieldChangeOps( $property, $tableChangeOp, $fieldChangeOps ) { |
226 | 233 | |
227 | 234 | foreach ( $fieldChangeOps as $fieldChangeOp ) { |
@@ -91,7 +91,7 @@ |
||
91 | 91 | * |
92 | 92 | * @param array $subSemanticDataMatch |
93 | 93 | * |
94 | - * @return Closure |
|
94 | + * @return \Closure |
|
95 | 95 | */ |
96 | 96 | public function getNotificationsToGroupListAsCallback( array $subSemanticDataMatch ) { |
97 | 97 | return function( $dataItem ) use( $subSemanticDataMatch ) { |