Completed
Push — reorg/add-composer-json-repos ( c4145d...b05be8 )
by
unknown
240:33 queued 229:59
created
jetpack/modules/google-analytics/classes/wp-google-analytics-options.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -15,6 +15,10 @@
 block discarded – undo
15 15
 }
16 16
 
17 17
 class Jetpack_Google_Analytics_Options {
18
+
19
+	/**
20
+	 * @param string $option_name
21
+	 */
18 22
 	public static function get_option( $option_name, $default = false ) {
19 23
 		$o = get_option( 'jetpack_wga' );
20 24
 		return isset( $o[ $option_name ] ) ? $o[ $option_name ] : $default;
Please login to merge, or discard this patch.
projects/plugins/jetpack/modules/gravatar-hovercards.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@
 block discarded – undo
154 154
  * @param string $avatar The <img/> element of the avatar.
155 155
  * @param mixed $author User ID, email address, user login, comment object, user object, post object
156 156
  *
157
- * @return The <img/> element of the avatar.
157
+ * @return string <img/> element of the avatar.
158 158
  */
159 159
 function grofiles_get_avatar( $avatar, $author ) {
160 160
 	$is_amp = class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request();
Please login to merge, or discard this patch.
projects/plugins/jetpack/modules/infinite-scroll/infinity.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1283,7 +1283,7 @@
 block discarded – undo
1283 1283
 	 * Returns an array of stock and custom taxonomy query vars
1284 1284
 	 *
1285 1285
 	 * @global $wp_taxonomies
1286
-	 * @return array
1286
+	 * @return string[]
1287 1287
 	 */
1288 1288
 	function get_taxonomy_vars() {
1289 1289
 		global $wp_taxonomies;
Please login to merge, or discard this patch.
projects/plugins/jetpack/modules/latex.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -58,6 +58,9 @@
 block discarded – undo
58 58
 	return latex_render( $latex, $fg, $bg, $s );
59 59
 }
60 60
 
61
+/**
62
+ * @param string $color
63
+ */
61 64
 function latex_get_default_color( $color, $default_color = 'ffffff' ) {
62 65
 	global $themecolors;
63 66
 	return isset($themecolors[$color]) ? $themecolors[$color] : $default_color;
Please login to merge, or discard this patch.
projects/plugins/jetpack/modules/markdown/easy-markdown.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -504,6 +504,9 @@
 block discarded – undo
504 504
 		) );
505 505
 	}
506 506
 
507
+	/**
508
+	 * @param string $content
509
+	 */
507 510
 	protected function comment_hash( $content ) {
508 511
 		return 'c-' . substr( md5( $content ), 0, 8 );
509 512
 	}
Please login to merge, or discard this patch.
projects/plugins/jetpack/modules/memberships/class-jetpack-memberships.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@
 block discarded – undo
172 172
 	 * @param array $post_types - other post types.
173 173
 	 *
174 174
 	 * @see hook 'rest_api_allowed_post_types'
175
-	 * @return array
175
+	 * @return string[]
176 176
 	 */
177 177
 	public function allow_rest_api_types( $post_types ) {
178 178
 		$post_types[] = self::$post_type_plan;
Please login to merge, or discard this patch.
projects/plugins/jetpack/modules/notes.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -36,6 +36,9 @@
 block discarded – undo
36 36
 		add_action( 'init', array( &$this, 'action_init' ) );
37 37
 	}
38 38
 
39
+	/**
40
+	 * @param string $file
41
+	 */
39 42
 	function wpcom_static_url($file) {
40 43
 		$i = hexdec( substr( md5( $file ), -1 ) ) % 2;
41 44
 		return 'https://s' . $i . '.wp.com' . $file;
Please login to merge, or discard this patch.
projects/plugins/jetpack/modules/photon-cdn.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
 	 *
82 82
 	 * @param String $plugin_slug plugin slug string.
83 83
 	 * @param String $current_version plugin version string.
84
-	 * @return null|bool
84
+	 * @return false|null
85 85
 	 */
86 86
 	public static function cdnize_plugin_assets( $plugin_slug, $current_version ) {
87 87
 		global $wp_scripts, $wp_styles;
Please login to merge, or discard this patch.
projects/plugins/jetpack/modules/protect/blocked-login-page.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -35,6 +35,7 @@  discard block
 block discarded – undo
35 35
 	/**
36 36
 	 * Singleton implementation
37 37
 	 *
38
+	 * @param string|false $ip_address
38 39
 	 * @return object
39 40
 	 */
40 41
 	public static function instance( $ip_address ) {
@@ -348,6 +349,9 @@  discard block
 block discarded – undo
348 349
 		return $contents;
349 350
 	}
350 351
 
352
+	/**
353
+	 * @param string $message
354
+	 */
351 355
 	function display_page( $title, $message, $back_button = false, $recovery_form = false ) {
352 356
 
353 357
 		if ( ! headers_sent() ) {
Please login to merge, or discard this patch.