Completed
Pull Request — master (#22)
by Karsten
18:28
created
src/HookRegistry.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,6 @@
 block discarded – undo
25 25
 	/**
26 26
 	 * @since 1.0
27 27
 	 *
28
-	 * @param array $options
29 28
 	 */
30 29
 	public function __construct() {
31 30
 		$this->addCallbackHandlers();
Please login to merge, or discard this patch.
src/Iterators/RecursiveMembersIterator.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -197,6 +197,9 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
src/ChangeNotification/ChangeNotificationFilter.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -213,6 +213,10 @@  discard block
 block discarded – undo
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
 block discarded – undo
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 ) {
Please login to merge, or discard this patch.
src/ChangeNotification/NotificationGroupsLocator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
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 ) {
Please login to merge, or discard this patch.
src/DataValues/NotificationGroupValue.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -151,6 +151,9 @@
 block discarded – undo
151 151
 		return $this->getShortHTMLText( $linker );
152 152
 	}
153 153
 
154
+	/**
155
+	 * @param string $value
156
+	 */
154 157
 	private function isKnownNotificationsGroup( $value ) {
155 158
 
156 159
 		$property = new DIProperty(
Please login to merge, or discard this patch.