Completed
Push — fix/revue-block-input-width ( a940ee...72ddea )
by
unknown
24:45 queued 18:10
created
class.jetpack-post-images.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -166,6 +166,7 @@  discard block
 block discarded – undo
166 166
 	/**
167 167
 	 * Get attachment images for a specified post and return them. Also make sure
168 168
 	 * their dimensions are at or above a required minimum.
169
+	 * @param integer $post_id
169 170
 	 */
170 171
 	static function from_attachment( $post_id, $width = 200, $height = 200 ) {
171 172
 		$images = array();
@@ -232,7 +233,7 @@  discard block
 block discarded – undo
232 233
 	 * format to the other images?_from_*() methods.
233 234
 	 *
234 235
 	 * @param  int $post_id The post ID to check
235
-	 * @return Array containing details of the Featured Image, or empty array if none.
236
+	 * @return integer|null containing details of the Featured Image, or empty array if none.
236 237
 	 */
237 238
 	static function from_thumbnail( $post_id, $width = 200, $height = 200 ) {
238 239
 		$images = array();
@@ -687,7 +688,6 @@  discard block
 block discarded – undo
687 688
 	 * resized and cropped image.
688 689
 	 *
689 690
 	 * @param  string $src
690
-	 * @param  int    $dimension
691 691
 	 * @return string            Transformed image URL
692 692
 	 */
693 693
 	static function fit_image_url( $src, $width, $height ) {
Please login to merge, or discard this patch.
packages/analyzer/src/Invocations/Function_Call.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,6 +15,9 @@
 block discarded – undo
15 15
 	public $line;
16 16
 	public $func_name;
17 17
 
18
+	/**
19
+	 * @param string $func_name
20
+	 */
18 21
 	public function __construct( $path, $line, $func_name ) {
19 22
 		$this->path      = $path;
20 23
 		$this->line      = $line;
Please login to merge, or discard this patch.
_inc/lib/class.color.php 1 patch
Doc Comments   +13 added lines, -1 removed lines patch added patch discarded remove patch
@@ -149,6 +149,9 @@  discard block
 block discarded – undo
149 149
 
150 150
 	/**
151 151
 	 * Helper function for Jetpack_Color::fromHsl()
152
+	 * @param double $p
153
+	 * @param double $q
154
+	 * @param integer $t
152 155
 	 */
153 156
 	private function hue2rgb( $p, $q, $t ) {
154 157
 		if ( $t < 0 ) $t += 1;
@@ -498,7 +501,7 @@  discard block
 block discarded – undo
498 501
 	 *
499 502
 	 * @param Jetpack_Color $color
500 503
 	 *
501
-	 * @return int
504
+	 * @return double
502 505
 	 */
503 506
 	public function getDistanceRgbFrom(Jetpack_Color $color)
504 507
 	{
@@ -687,6 +690,9 @@  discard block
 block discarded – undo
687 690
 		return $this->incrementLightness( $amount );
688 691
 	}
689 692
 
693
+	/**
694
+	 * @param integer $amount
695
+	 */
690 696
 	public function incrementLightness( $amount ) {
691 697
 		$hsl = $this->toHsl();
692 698
 		extract( $hsl );
@@ -704,6 +710,9 @@  discard block
 block discarded – undo
704 710
 		return $this->incrementSaturation( - $amount );
705 711
 	}
706 712
 
713
+	/**
714
+	 * @param integer $amount
715
+	 */
707 716
 	public function incrementSaturation( $amount ) {
708 717
 		$hsl = $this->toHsl();
709 718
 		extract( $hsl );
@@ -744,6 +753,9 @@  discard block
 block discarded – undo
744 753
 		return $this->incrementHue( $incr );
745 754
 	}
746 755
 
756
+	/**
757
+	 * @param integer $amount
758
+	 */
747 759
 	public function incrementHue( $amount ) {
748 760
 		$hsl = $this->toHsl();
749 761
 		extract( $hsl );
Please login to merge, or discard this patch.
sal/class.json-api-links.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,6 +30,7 @@  discard block
 block discarded – undo
30 30
 	 * Used to construct meta links in API responses
31 31
 	 *
32 32
 	 * @param mixed ...$args Optional arguments to be appended to URL
33
+	 * @param string $args
33 34
 	 * @return string Endpoint URL
34 35
 	 **/
35 36
 	function get_link( ...$args ) {
@@ -128,7 +129,7 @@  discard block
 block discarded – undo
128 129
 	 * This method is used in get_link() to construct meta links for API responses.
129 130
 	 *
130 131
 	 * @param $template_path string The generic endpoint path, e.g. /sites/%s
131
-	 * @param $path string The current endpoint path, relative to the version, e.g. /sites/12345
132
+	 * @param string $path string The current endpoint path, relative to the version, e.g. /sites/12345
132 133
 	 * @param $request_method string Request method used to access the endpoint path
133 134
 	 * @return string The current version, or otherwise the maximum version available
134 135
 	 */
Please login to merge, or discard this patch.
_inc/lib/class.media-summary.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -271,6 +271,9 @@  discard block
 block discarded – undo
271 271
 		}
272 272
 	}
273 273
 
274
+	/**
275
+	 * @param string $type
276
+	 */
274 277
 	static function get_video_poster( $type, $id ) {
275 278
 		if ( 'videopress' == $type ) {
276 279
 			if ( function_exists( 'video_get_highest_resolution_image_url' ) ) {
@@ -356,6 +359,9 @@  discard block
 block discarded – undo
356 359
 		return (int) count( self::split_content_in_words( self::clean_text( $post_content ) ) );
357 360
 	}
358 361
 
362
+	/**
363
+	 * @param string $excerpt_content
364
+	 */
359 365
 	static function get_word_remaining_count( $post_content, $excerpt_content ) {
360 366
 		$content_word_count = count( self::split_content_in_words( self::clean_text( $post_content ) ) );
361 367
 		$excerpt_word_count = count( self::split_content_in_words( self::clean_text( $excerpt_content ) ) );
Please login to merge, or discard this patch.
packages/analyzer/src/Dependencies/Dependency.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -9,6 +9,9 @@
 block discarded – undo
9 9
 	public $declaration;
10 10
 	public $invocation_root;
11 11
 
12
+	/**
13
+	 * @param string $invocation_root
14
+	 */
12 15
 	function __construct( $invocation, $declaration, $invocation_root = null ) {
13 16
 		$this->invocation      = $invocation;
14 17
 		$this->declaration     = $declaration;
Please login to merge, or discard this patch.
packages/connection/legacy/class-jetpack-signature.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -165,7 +165,7 @@
 block discarded – undo
165 165
 	 * @param string $url              Request URL.
166 166
 	 * @param mixed  $body             Request body.
167 167
 	 * @param bool   $verify_body_hash Whether to verify the body hash against the body.
168
-	 * @return string|WP_Error Request signature, or a WP_Error on failure.
168
+	 * @return string Request signature, or a WP_Error on failure.
169 169
 	 */
170 170
 	public function sign_request( $token = '', $timestamp = 0, $nonce = '', $body_hash = '', $method = '', $url = '', $body = null, $verify_body_hash = true ) {
171 171
 		if ( ! $this->secret ) {
Please login to merge, or discard this patch.
packages/jitm/src/class-jitm.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
 	 *
104 104
 	 * @param string $content The current message.
105 105
 	 *
106
-	 * @return array The new message.
106
+	 * @return string The new message.
107 107
 	 */
108 108
 	public static function jitm_woocommerce_services_msg( $content ) {
109 109
 		if ( ! function_exists( 'wc_get_base_location' ) ) {
Please login to merge, or discard this patch.
packages/options/legacy/class-jetpack-options.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 	 *
28 28
 	 * @param string $type The type of option to return. Defaults to 'compact'.
29 29
 	 *
30
-	 * @return array
30
+	 * @return string[]
31 31
 	 */
32 32
 	public static function get_option_names( $type = 'compact' ) {
33 33
 		switch ( $type ) {
@@ -505,7 +505,7 @@  discard block
 block discarded – undo
505 505
 	 * @since 5.4.0
506 506
 	 *
507 507
 	 * @param boolean $strip_unsafe_options If true, and by default, will strip out options necessary for the connection to WordPress.com.
508
-	 * @return array An array of all options managed via the Jetpack_Options class.
508
+	 * @return string[] An array of all options managed via the Jetpack_Options class.
509 509
 	 */
510 510
 	public static function get_all_jetpack_options( $strip_unsafe_options = true ) {
511 511
 		$jetpack_options            = self::get_option_names();
@@ -548,7 +548,7 @@  discard block
 block discarded – undo
548 548
 	 *
549 549
 	 * @since 5.4.0
550 550
 	 *
551
-	 * @return array
551
+	 * @return string[]
552 552
 	 */
553 553
 	public static function get_all_wp_options() {
554 554
 		// A manual build of the wp options.
Please login to merge, or discard this patch.