Completed
Push — feature/45-drop-php-52 ( f96425 )
by Sudar
11:51
created
include/install.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
 	 *
70 70
 	 * @global object $wpdb
71 71
 	 * @param  array  $tables List of tables to be deleted
72
-	 * @return array  $tables Modified list of tables to be deleted
72
+	 * @return string[]  $tables Modified list of tables to be deleted
73 73
 	 */
74 74
 	public static function on_delete_blog( $tables ) {
75 75
 		global $wpdb;
Please login to merge, or discard this patch.
include/util/helper.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,6 @@
 block discarded – undo
30 30
  *
31 31
  * @since 1.9
32 32
  *
33
- * @param $string $email Email string to be sanitized.
34 33
  *
35 34
  * @return string Sanitized email.
36 35
  */
Please login to merge, or discard this patch.
include/EmailLogAutoloader.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
 	 *
105 105
 	 * @param string $class The fully-qualified class name.
106 106
 	 *
107
-	 * @return mixed The mapped file name on success, or boolean false on
107
+	 * @return string|false The mapped file name on success, or boolean false on
108 108
 	 * failure.
109 109
 	 */
110 110
 	public function load_class( $class ) {
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
 	 * @param string $prefix         The namespace prefix.
143 143
 	 * @param string $relative_class The relative class name.
144 144
 	 *
145
-	 * @return mixed Boolean false if no mapped file can be loaded, or the
145
+	 * @return false|string Boolean false if no mapped file can be loaded, or the
146 146
 	 * name of the mapped file that was loaded.
147 147
 	 */
148 148
 	protected function load_mapped_file( $prefix, $relative_class ) {
Please login to merge, or discard this patch.