Completed
Push — add/cli-generate ( 4282a6...844c4b )
by
unknown
317:50 queued 308:15
created
jetpack/json-endpoints/class.wpcom-json-api-update-taxonomy-endpoint.php 1 patch
Doc Comments   +17 added lines patch added patch discarded remove patch
@@ -26,6 +26,11 @@  discard block
 block discarded – undo
26 26
 	}
27 27
 
28 28
 	// /sites/%s/tags|categories/new    -> $blog_id
29
+
30
+	/**
31
+	 * @param string $path
32
+	 * @param string $taxonomy_type
33
+	 */
29 34
 	function new_taxonomy( $path, $blog_id, $taxonomy_type ) {
30 35
 		$args  = $this->query_args();
31 36
 		$input = $this->input();
@@ -77,6 +82,12 @@  discard block
 block discarded – undo
77 82
 	}
78 83
 
79 84
 	// /sites/%s/tags|categories/slug:%s -> $blog_id, $taxonomy_id
85
+
86
+	/**
87
+	 * @param string $path
88
+	 * @param integer $object_id
89
+	 * @param string $taxonomy_type
90
+	 */
80 91
 	function update_taxonomy( $path, $blog_id, $object_id, $taxonomy_type ) {
81 92
 		$taxonomy = get_term_by( 'slug', $object_id, $taxonomy_type );
82 93
 		$tax      = get_taxonomy( $taxonomy_type );
@@ -122,6 +133,12 @@  discard block
 block discarded – undo
122 133
 	}
123 134
 
124 135
 	// /sites/%s/tags|categories/%s/delete -> $blog_id, $taxonomy_id
136
+
137
+	/**
138
+	 * @param string $path
139
+	 * @param integer $object_id
140
+	 * @param string $taxonomy_type
141
+	 */
125 142
 	function delete_taxonomy( $path, $blog_id, $object_id, $taxonomy_type ) {
126 143
 		$taxonomy = get_term_by( 'slug', $object_id, $taxonomy_type );
127 144
 		$tax      = get_taxonomy( $taxonomy_type );
Please login to merge, or discard this patch.
jetpack/json-endpoints/class.wpcom-json-api-update-term-endpoint.php 1 patch
Doc Comments   +17 added lines patch added patch discarded remove patch
@@ -115,6 +115,11 @@  discard block
 block discarded – undo
115 115
 	}
116 116
 
117 117
 	// /sites/%s/taxonomies/%s/terms/new -> $blog_id, $taxonomy
118
+
119
+	/**
120
+	 * @param string $path
121
+	 * @param string $taxonomy
122
+	 */
118 123
 	function new_term( $path, $blog_id, $taxonomy ) {
119 124
 		$args = $this->query_args();
120 125
 		$input = $this->input();
@@ -160,6 +165,12 @@  discard block
 block discarded – undo
160 165
 	}
161 166
 
162 167
 	// /sites/%s/taxonomies/%s/terms/slug:%s -> $blog_id, $taxonomy, $slug
168
+
169
+	/**
170
+	 * @param string $path
171
+	 * @param string $slug
172
+	 * @param string $taxonomy
173
+	 */
163 174
 	function update_term( $path, $blog_id, $slug, $taxonomy ) {
164 175
 		$tax = get_taxonomy( $taxonomy );
165 176
 		if ( ! current_user_can( $tax->cap->edit_terms ) ) {
@@ -208,6 +219,12 @@  discard block
 block discarded – undo
208 219
 	}
209 220
 
210 221
 	// /sites/%s/taxonomies/%s/terms/slug:%s/delete -> $blog_id, $taxonomy, $slug
222
+
223
+	/**
224
+	 * @param string $path
225
+	 * @param string $slug
226
+	 * @param string $taxonomy
227
+	 */
211 228
 	function delete_term( $path, $blog_id, $slug, $taxonomy ) {
212 229
 		$term = get_term_by( 'slug', $slug, $taxonomy );
213 230
 		$tax = get_taxonomy( $taxonomy );
Please login to merge, or discard this patch.
jetpack/json-endpoints/jetpack/class.jetpack-json-api-cron-endpoint.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -24,6 +24,9 @@  discard block
 block discarded – undo
24 24
 		return  isset( $args['arguments'] ) ? json_decode( $args['arguments'] ) : array();
25 25
 	}
26 26
 
27
+	/**
28
+	 * @param double $gmt_time
29
+	 */
27 30
 	protected function is_cron_locked( $gmt_time ) {
28 31
 		// The cron lock: a unix timestamp from when the cron was spawned.
29 32
 		$doing_cron_transient = $this->get_cron_lock();
@@ -33,6 +36,9 @@  discard block
 block discarded – undo
33 36
 		return $doing_cron_transient;
34 37
 	}
35 38
 
39
+	/**
40
+	 * @param string $doing_wp_cron
41
+	 */
36 42
 	protected function maybe_unlock_cron( $doing_wp_cron ) {
37 43
 		if ( $this->get_cron_lock() == $doing_wp_cron ) {
38 44
 			delete_transient( 'doing_cron' );
Please login to merge, or discard this patch.
jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-endpoint.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -170,6 +170,9 @@
 block discarded – undo
170 170
 	}
171 171
 
172 172
 
173
+	/**
174
+	 * @param string $plugin
175
+	 */
173 176
 	protected function validate_plugin( $plugin ) {
174 177
 		if ( ! isset( $plugin) || empty( $plugin ) ) {
175 178
 			return new WP_Error( 'missing_plugin', __( 'You are required to specify a plugin to activate.', 'jetpack' ), 400 );
Please login to merge, or discard this patch.
json-endpoints/jetpack/class.jetpack-json-api-plugins-modify-endpoint.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -244,6 +244,9 @@
 block discarded – undo
244 244
 		}
245 245
 	}
246 246
 
247
+	/**
248
+	 * @param string $capability
249
+	 */
247 250
 	protected function current_user_can( $capability, $plugin = null ) {
248 251
 		if ( $plugin ) {
249 252
 			return current_user_can( $capability, $plugin );
Please login to merge, or discard this patch.
jetpack/json-endpoints/jetpack/class.jetpack-json-api-sync-endpoint.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -228,6 +228,9 @@
 block discarded – undo
228 228
 		);
229 229
 	}
230 230
 
231
+	/**
232
+	 * @param Queue $queue
233
+	 */
231 234
 	protected function get_buffer( $queue, $number_of_items ) {
232 235
 		$start = time();
233 236
 		$max_duration = 5; // this will try to get the buffer
Please login to merge, or discard this patch.
projects/plugins/jetpack/modules/carousel/jetpack-carousel.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -129,6 +129,9 @@  discard block
 block discarded – undo
129 129
 		return apply_filters( 'jp_carousel_load_for_images_linked_to_file', false );
130 130
 	}
131 131
 
132
+	/**
133
+	 * @param string $version
134
+	 */
132 135
 	function asset_version( $version ) {
133 136
 		/**
134 137
 		 * Filter the version string used when enqueuing Carousel assets.
@@ -511,6 +514,9 @@  discard block
 block discarded – undo
511 514
 		return $attr;
512 515
 	}
513 516
 
517
+	/**
518
+	 * @param string $html
519
+	 */
514 520
 	function add_data_to_container( $html ) {
515 521
 		global $post;
516 522
 		if (
@@ -757,6 +763,9 @@  discard block
 block discarded – undo
757 763
 		return ( 1 == $value ) ? 1 : 0;
758 764
 	}
759 765
 
766
+	/**
767
+	 * @param string $name
768
+	 */
760 769
 	function settings_checkbox( $name, $label_text, $extra_text = '', $default_to_checked = true ) {
761 770
 		if ( empty( $name ) ) {
762 771
 			return;
@@ -772,6 +781,9 @@  discard block
 block discarded – undo
772 781
 		echo '</fieldset>';
773 782
 	}
774 783
 
784
+	/**
785
+	 * @param string $name
786
+	 */
775 787
 	function settings_select( $name, $values, $extra_text = '' ) {
776 788
 		if ( empty( $name ) || ! is_array( $values ) || empty( $values ) ) {
777 789
 			return;
Please login to merge, or discard this patch.
projects/plugins/jetpack/modules/custom-css/csstidy/class.csstidy.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
 	 * Get the value of a setting.
290 290
 	 * @param string $setting
291 291
 	 * @access public
292
-	 * @return mixed
292
+	 * @return string
293 293
 	 * @version 1.0
294 294
 	 */
295 295
 	function get_cfg($setting) {
@@ -358,7 +358,7 @@  discard block
 block discarded – undo
358 358
 
359 359
 	/**
360 360
 	 * Adds a token to $this->tokens
361
-	 * @param mixed $type
361
+	 * @param integer $type
362 362
 	 * @param string $data
363 363
 	 * @param bool $do add a token even if preserve_css is off
364 364
 	 * @access private
@@ -1189,6 +1189,7 @@  discard block
 block discarded – undo
1189 1189
 	 * format("abc, def, ghi") => format("abc, def, ghi")
1190 1190
 	 *
1191 1191
 	 * @param string
1192
+	 * @param string $value
1192 1193
 	 * @return array
1193 1194
 	 */
1194 1195
 
Please login to merge, or discard this patch.
projects/plugins/jetpack/modules/custom-css/csstidy/class.csstidy_ctype.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -38,6 +38,9 @@
 block discarded – undo
38 38
 /* ctype_alpha  Check for alphabetic character(s) */
39 39
 if (!function_exists('ctype_alpha')) {
40 40
 
41
+	/**
42
+	 * @param string $text
43
+	 */
41 44
 	function ctype_alpha($text) {
42 45
 		return preg_match("/[a-zA-Z]/", $text);
43 46
 	}
Please login to merge, or discard this patch.