Completed
Push — add/autoloader-path-cache ( 8f4e9f...9c201d )
by
unknown
08:04
created
extensions/blocks/story/story.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -217,7 +217,7 @@
 block discarded – undo
217 217
  * Render a slide
218 218
  *
219 219
  * @param array $media  Media information.
220
- * @param array $index  Index of the slide, first slide will be displayed by default, others hidden.
220
+ * @param integer $index  Index of the slide, first slide will be displayed by default, others hidden.
221 221
  *
222 222
  * @return string
223 223
  */
Please login to merge, or discard this patch.
packages/connection/tests/php/test_Signature.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -220,7 +220,7 @@
 block discarded – undo
220 220
 	 * Also used by @see self::test_request_port_constants
221 221
 	 *
222 222
 	 * @param mixed   $http_x_forwarded_port value of $_SERVER[ 'HTTP_X_FORWARDED_PORT' ].
223
-	 * @param mixed   $server_port value of $_SERVER[ 'SERVER_PORT' ]. Null will unset the value.
223
+	 * @param string   $server_port value of $_SERVER[ 'SERVER_PORT' ]. Null will unset the value.
224 224
 	 * @param string  $expeceted The expected output. Null will unset the value.
225 225
 	 * @param boolean $ssl Whether to consider current request using SSL or not.
226 226
 	 *
Please login to merge, or discard this patch.
packages/status/tests/php/test-status.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
 	 * Mock a set of constants.
313 313
 	 *
314 314
 	 * @param array $constants Array of sets with constants and their respective values.
315
-	 * @return phpmock\Mock The mock object.
315
+	 * @return phpmock\Mock[] The mock object.
316 316
 	 */
317 317
 	protected function mock_constants( $constants = array() ) {
318 318
 		$prepare_constant = function ( $constant ) {
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
 	/**
329 329
 	 * Mock $wpdb->get_var() and make it return a certain value.
330 330
 	 *
331
-	 * @param mixed $return_value  Return value of the function.
331
+	 * @param integer $return_value  Return value of the function.
332 332
 	 *
333 333
 	 * PHPUnit\Framework\MockObject\MockObject The mock object.
334 334
 	 */
Please login to merge, or discard this patch.
packages/autoloader/src/class-autoloader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
 	 *
101 101
 	 * @param string $class_name The name of the class to autoload.
102 102
 	 *
103
-	 * @return bool Indicates whether or not a class file was loaded.
103
+	 * @return null|boolean Indicates whether or not a class file was loaded.
104 104
 	 */
105 105
 	public static function load_class( $class_name ) {
106 106
 		global $jetpack_autoloader_loader;
Please login to merge, or discard this patch.