Completed
Push — prepare/4.1 ( 78e0be...3f9b7a )
by Jeremy
345:01 queued 335:53
created
modules/protect/math-fallback.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 		/**
27 27
 		 * Verifies that a user answered the math problem correctly while logging in.
28 28
 		 *
29
-		 * @return bool Returns true if the math is correct
29
+		 * @return boolean|null Returns true if the math is correct
30 30
 		 * @throws Error if insuffient $_POST variables are present.
31 31
 		 * @throws Error message if the math is wrong
32 32
 		 */
Please login to merge, or discard this patch.
modules/publicize.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -266,6 +266,9 @@  discard block
 block discarded – undo
266 266
 		return trim( preg_replace( '#<p>\s*</p>#i', '', $new_string ) );
267 267
 	}
268 268
 
269
+	/**
270
+	 * @return integer
271
+	 */
269 272
 	function remove_innermost_last_child( $node, &$node_removed_from ) {
270 273
 		$node_removed_from = $node;
271 274
 
@@ -308,6 +311,9 @@  discard block
 block discarded – undo
308 311
 		return str_replace( $search, $replace, $string );
309 312
 	}
310 313
 
314
+	/**
315
+	 * @param string $message
316
+	 */
311 317
 	public static function sanitize_message( $message ) {
312 318
 		$message = preg_replace( '@<(script|style)[^>]*?>.*?</\\1>@si', '', $message );
313 319
 		$message = wp_kses( $message, array() );
Please login to merge, or discard this patch.
modules/publicize/publicize-jetpack.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -328,6 +328,9 @@  discard block
 block discarded – undo
328 328
 		), menu_page_url( 'sharing', false ) );
329 329
 	}
330 330
 
331
+	/**
332
+	 * @param string $filter
333
+	 */
331 334
 	function get_services( $filter ) {
332 335
 		if ( !in_array( $filter, array( 'all', 'connected' ) ) )
333 336
 			$filter = 'all';
@@ -663,6 +666,9 @@  discard block
 block discarded – undo
663 666
 	function options_save_path() { $this->options_save_other( 'path' ); }
664 667
 	function options_save_google_plus() { $this->options_save_other( 'google_plus' ); }
665 668
 
669
+	/**
670
+	 * @param string $service_name
671
+	 */
666 672
 	function options_save_other( $service_name ) {
667 673
 		// Nonce check
668 674
 		check_admin_referer( 'save_' . $service_name . '_token_' . $_REQUEST['connection'] );
Please login to merge, or discard this patch.
modules/publicize/ui.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -261,6 +261,9 @@
 block discarded – undo
261 261
 		</div><?php
262 262
 	}
263 263
 
264
+	/**
265
+	 * @param string $service_name
266
+	 */
264 267
 	public static function options_page_other( $service_name ) {
265 268
 		// Nonce check
266 269
 		check_admin_referer( "options_page_{$service_name}_" . $_REQUEST['connection'] );
Please login to merge, or discard this patch.
modules/related-posts/jetpack-related-posts.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -1220,6 +1220,8 @@
 block discarded – undo
1220 1220
 	 * Enqueues assets needed to do async loading of related posts.
1221 1221
 	 *
1222 1222
 	 * @uses wp_enqueue_script, wp_enqueue_style, plugins_url
1223
+	 * @param boolean $script
1224
+	 * @param boolean $style
1223 1225
 	 * @return null
1224 1226
 	 */
1225 1227
 	protected function _enqueue_assets( $script, $style ) {
Please login to merge, or discard this patch.
modules/sharedaddy/sharing-service.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -427,6 +427,9 @@
 block discarded – undo
427 427
 	public $service	= '';
428 428
 	public $total 		= 0;
429 429
 
430
+	/**
431
+	 * @param integer $total
432
+	 */
430 433
 	public function __construct( $id, $total ) {
431 434
 		$services 		= new Sharing_Service();
432 435
 		$this->id 		= esc_html( $id );
Please login to merge, or discard this patch.
modules/sharedaddy/sharing-sources.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -40,6 +40,9 @@  discard block
 block discarded – undo
40 40
 		return $this->id;
41 41
 	}
42 42
 
43
+	/**
44
+	 * @return string
45
+	 */
43 46
 	public function get_share_url( $post_id ) {
44 47
 		/**
45 48
 		 * Filter the sharing permalink.
@@ -77,6 +80,9 @@  discard block
 block discarded – undo
77 80
 		return false;
78 81
 	}
79 82
 
83
+	/**
84
+	 * @param string $url
85
+	 */
80 86
 	public function get_link( $url, $text, $title, $query = '', $id = false ) {
81 87
 		$args = func_get_args();
82 88
 		$klasses = array( 'share-'.$this->get_class(), 'sd-button' );
@@ -311,6 +317,9 @@  discard block
 block discarded – undo
311 317
 		do_action( 'sharing_bump_stats', array( 'service' => $this, 'post' => $post ) );
312 318
 	}
313 319
 
320
+	/**
321
+	 * @param string $name
322
+	 */
314 323
 	public function js_dialog( $name, $params = array() ) {
315 324
 		if ( true !== $this->open_link_in_new )
316 325
 			return;
@@ -1393,6 +1402,9 @@  discard block
 block discarded – undo
1393 1402
 		return __( 'Pinterest', 'jetpack' );
1394 1403
 	}
1395 1404
 
1405
+	/**
1406
+	 * @return string
1407
+	 */
1396 1408
 	public function get_image( $post ) {
1397 1409
 		if ( class_exists( 'Jetpack_PostImages' ) ) {
1398 1410
 			$image = Jetpack_PostImages::get_image( $post->ID, array( 'fallback_to_avatars' => true ) );
Please login to merge, or discard this patch.
modules/shortcodes/polldaddy.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -22,6 +22,9 @@
 block discarded – undo
22 22
 		add_action( 'infinite_scroll_render', array( $this, 'polldaddy_shortcode_infinite' ), 11 );
23 23
 	}
24 24
 
25
+	/**
26
+	 * @param string $survey_link
27
+	 */
25 28
 	private function get_async_code( array $settings, $survey_link ) {
26 29
 		$embed_src     = 'http://i0.poll.fm/survey.js';
27 30
 		$embed_src_ssl = 'https://polldaddy.com/survey.js';
Please login to merge, or discard this patch.
modules/shortcodes/slideshow.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -82,6 +82,9 @@
 block discarded – undo
82 82
 		$this->settings_select( 'jetpack_slideshow_background_color', $options );
83 83
 	}
84 84
 
85
+	/**
86
+	 * @param string $name
87
+	 */
85 88
 	function settings_select( $name, $values, $extra_text = '' ) {
86 89
 		if ( empty( $name ) || empty( $values ) || ! is_array( $values ) ) {
87 90
 			return;
Please login to merge, or discard this patch.