Completed
Push — master ( f835ba...dee201 )
by mw
47:53 queued 08:25
created
src/InTextAnnotationSanitizer.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 	 *
16 16
 	 * @param string $text
17 17
 	 *
18
-	 * @return text
18
+	 * @return string
19 19
 	 */
20 20
 	public static function decodeSquareBracket( $text ) {
21 21
 		return str_replace( array( '%5B', '%5D' ), array( '[', ']' ), $text );
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 	 *
27 27
 	 * @param string $text
28 28
 	 *
29
-	 * @return text
29
+	 * @return string
30 30
 	 */
31 31
 	public static function obscureAnnotation( $text ) {
32 32
 		return preg_replace_callback(
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 	 *
44 44
 	 * @param string $text
45 45
 	 *
46
-	 * @return text
46
+	 * @return string
47 47
 	 */
48 48
 	public static function removeAnnotation( $text ) {
49 49
 		return preg_replace_callback(
Please login to merge, or discard this patch.