Completed
Push — update/refactor-missing-token-... ( 02f102...5ee24a )
by
unknown
23:04 queued 14:24
created
sal/class.json-api-site-jetpack-base.php 1 patch
Doc Comments   +15 added lines patch added patch discarded remove patch
@@ -4,12 +4,27 @@
 block discarded – undo
4 4
 require_once dirname( __FILE__ ) . '/class.json-api-site-base.php';
5 5
 
6 6
 abstract class Abstract_Jetpack_Site extends SAL_Site {
7
+
8
+	/**
9
+	 * @param string $name
10
+	 */
7 11
 	abstract protected function get_constant( $name );
8 12
 
13
+	/**
14
+	 * @param string $feature_name
15
+	 */
9 16
 	abstract protected function current_theme_supports( $feature_name );
10 17
 
18
+	/**
19
+	 * @param string $feature_name
20
+	 */
11 21
 	abstract protected function get_theme_support( $feature_name );
12 22
 
23
+	/**
24
+	 * @param string $name
25
+	 *
26
+	 * @return string
27
+	 */
13 28
 	abstract protected function get_mock_option( $name );
14 29
 
15 30
 	abstract protected function get_jetpack_version();
Please login to merge, or discard this patch.
sal/class.json-api-post-base.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -16,6 +16,9 @@  discard block
 block discarded – undo
16 16
 	public $context;
17 17
 	public $site;
18 18
 
19
+	/**
20
+	 * @param Jetpack_Site $site
21
+	 */
19 22
 	function __construct( $site, $post, $context ) {
20 23
 		$this->post = $post;
21 24
 		$this->context = $context;
@@ -487,6 +490,10 @@  discard block
 block discarded – undo
487 490
 		return $suggestions;
488 491
 	}
489 492
 
493
+	/**
494
+	 * @param string $taxonomy_type
495
+	 * @param string $context
496
+	 */
490 497
 	private function format_taxonomy( $taxonomy, $taxonomy_type, $context ) {
491 498
 		// Permissions
492 499
 		switch ( $context ) {
Please login to merge, or discard this patch.
sal/class.json-api-links.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,6 @@  discard block
 block discarded – undo
26 26
 	 *
27 27
 	 * Used to construct meta links in API responses
28 28
 	 *
29
-	 * @param mixed $args Optional arguments to be appended to URL
30 29
 	 * @return string Endpoint URL
31 30
 	 **/
32 31
 	function get_link() {
@@ -117,7 +116,7 @@  discard block
 block discarded – undo
117 116
 	 * This method is used in get_link() to construct meta links for API responses.
118 117
 	 * 
119 118
 	 * @param $template_path The generic endpoint path, e.g. /sites/%s
120
-	 * @param $path string The current endpoint path, relative to the version, e.g. /sites/12345
119
+	 * @param string $path string The current endpoint path, relative to the version, e.g. /sites/12345
121 120
 	 * @param $method string Request method used to access the endpoint path
122 121
 	 * @return string The current version, or otherwise the maximum version available
123 122
 	 */
Please login to merge, or discard this patch.
class.json-api-endpoints.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -1341,6 +1341,7 @@  discard block
 block discarded – undo
1341 1341
 	 * timezone set in the options table for the blog or the GMT offset.
1342 1342
 	 *
1343 1343
 	 * @param datetime string
1344
+	 * @param string $date_string
1344 1345
 	 *
1345 1346
 	 * @return array( $local_time_string, $gmt_time_string )
1346 1347
 	 */
@@ -1458,6 +1459,10 @@  discard block
 block discarded – undo
1458 1459
 		do_action( 'restapi_theme_init' );
1459 1460
 	}
1460 1461
 
1462
+	/**
1463
+	 * @param string $from_hook
1464
+	 * @param string $to_hook
1465
+	 */
1461 1466
 	function copy_hooks( $from_hook, $to_hook, $base_paths ) {
1462 1467
 		global $wp_filter;
1463 1468
 		foreach ( $wp_filter as $hook => $actions ) {
Please login to merge, or discard this patch.
sal/class.json-api-site-base.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -23,6 +23,9 @@
 block discarded – undo
23 23
 	public $blog_id;
24 24
 	public $platform;
25 25
 
26
+	/**
27
+	 * @param WPORG_Platform $platform
28
+	 */
26 29
 	public function __construct( $blog_id, $platform ) {
27 30
 		$this->blog_id = $blog_id;
28 31
 		$this->platform = $platform;
Please login to merge, or discard this patch.
json-endpoints/class.wpcom-json-api-post-v1-1-endpoint.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -120,6 +120,9 @@  discard block
 block discarded – undo
120 120
 		return $response;
121 121
 	}
122 122
 
123
+	/**
124
+	 * @param string $field
125
+	 */
123 126
 	protected function get_sal_post_by( $field, $field_value, $context ) {
124 127
 		global $blog_id;
125 128
 
@@ -132,6 +135,9 @@  discard block
 block discarded – undo
132 135
 		return $post;
133 136
 	}
134 137
 
138
+	/**
139
+	 * @param string $context
140
+	 */
135 141
 	private function render_response_keys( $post, $context, $keys ) {
136 142
 		foreach ( $keys as $key ) {
137 143
 			switch ( $key ) {
Please login to merge, or discard this patch.
modules/sso.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
 	 * Validate the require  two step checkbox in Settings > General
285 285
 	 *
286 286
 	 * @since 2.7
287
-	 * @return boolean
287
+	 * @return integer
288 288
 	 **/
289 289
 	public function validate_jetpack_sso_require_two_step( $input ) {
290 290
 		return ( ! empty( $input ) ) ? 1 : 0;
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
 	 * Validate the match by email check in Settings > General
310 310
 	 *
311 311
 	 * @since 2.9
312
-	 * @return boolean
312
+	 * @return integer
313 313
 	 **/
314 314
 	public function validate_jetpack_sso_match_by_email( $input ) {
315 315
 		return ( ! empty( $input ) ) ? 1 : 0;
@@ -336,7 +336,7 @@  discard block
 block discarded – undo
336 336
 	 * Validate settings input from Settings > General
337 337
 	 *
338 338
 	 * @since 2.7
339
-	 * @return boolean
339
+	 * @return integer
340 340
 	 **/
341 341
 	public function validate_settings_remove_login_form_checkbox( $input ) {
342 342
 		return ( isset( $input['remove_login_form'] ) )? 1: 0;
@@ -911,7 +911,7 @@  discard block
 block discarded – undo
911 911
 	 *
912 912
 	 * @param  boolean          $reauth  Should the user be forced to reauthenticate on WordPress.com?
913 913
 	 * @param  array            $args    Optional query parameters.
914
-	 * @return string|WP_Error           The WordPress.com SSO URL or a WP_Error object.
914
+	 * @return string           The WordPress.com SSO URL or a WP_Error object.
915 915
 	 */
916 916
 	function get_sso_url_or_die( $reauth = false, $args = array() ) {
917 917
 		if ( empty( $reauth ) ) {
Please login to merge, or discard this patch.