@@ -273,6 +273,9 @@ discard block |
||
273 | 273 | } |
274 | 274 | } |
275 | 275 | |
276 | + /** |
|
277 | + * @param stdClass $block |
|
278 | + */ |
|
276 | 279 | protected function flattenSelectors($block, $parentKey = null) { |
277 | 280 | if ($block->selectors) { |
278 | 281 | $selectors = array(); |
@@ -362,6 +365,10 @@ discard block |
||
362 | 365 | } |
363 | 366 | |
364 | 367 | // TODO refactor compileNestedBlock and compileMedia into same thing |
368 | + |
|
369 | + /** |
|
370 | + * @param string[] $selectors |
|
371 | + */ |
|
365 | 372 | protected function compileNestedBlock($block, $selectors) { |
366 | 373 | $this->pushEnv($block); |
367 | 374 | |
@@ -1140,6 +1147,9 @@ discard block |
||
1140 | 1147 | return $this->toBool($left[1] < $right[1]); |
1141 | 1148 | } |
1142 | 1149 | |
1150 | + /** |
|
1151 | + * @param boolean $thing |
|
1152 | + */ |
|
1143 | 1153 | public function toBool($thing) { |
1144 | 1154 | return $thing ? self::$true : self::$false; |
1145 | 1155 | } |
@@ -1268,6 +1278,10 @@ discard block |
||
1268 | 1278 | } |
1269 | 1279 | |
1270 | 1280 | // find the final set of selectors |
1281 | + |
|
1282 | + /** |
|
1283 | + * @param stdClass $env |
|
1284 | + */ |
|
1271 | 1285 | protected function multiplySelectors($env) { |
1272 | 1286 | $envs = array(); |
1273 | 1287 | while (null !== $env) { |
@@ -1474,6 +1488,9 @@ discard block |
||
1474 | 1488 | $env->store[$name] = $value; |
1475 | 1489 | } |
1476 | 1490 | |
1491 | + /** |
|
1492 | + * @param boolean $defaultValue |
|
1493 | + */ |
|
1477 | 1494 | public function get($name, $defaultValue = null, $env = null) { |
1478 | 1495 | $name = $this->normalizeName($name); |
1479 | 1496 | |
@@ -1503,6 +1520,9 @@ discard block |
||
1503 | 1520 | $this->importPaths[] = $path; |
1504 | 1521 | } |
1505 | 1522 | |
1523 | + /** |
|
1524 | + * @param string $path |
|
1525 | + */ |
|
1506 | 1526 | public function setImportPaths($path) { |
1507 | 1527 | $this->importPaths = (array)$path; |
1508 | 1528 | } |
@@ -1511,6 +1531,9 @@ discard block |
||
1511 | 1531 | $this->numberPrecision = $numberPrecision; |
1512 | 1532 | } |
1513 | 1533 | |
1534 | + /** |
|
1535 | + * @param string $formatterName |
|
1536 | + */ |
|
1514 | 1537 | public function setFormatter($formatterName) { |
1515 | 1538 | $this->formatter = $formatterName; |
1516 | 1539 | } |
@@ -1544,6 +1567,10 @@ discard block |
||
1544 | 1567 | } |
1545 | 1568 | |
1546 | 1569 | // results the file path for an import url if it exists |
1570 | + |
|
1571 | + /** |
|
1572 | + * @param string $url |
|
1573 | + */ |
|
1547 | 1574 | public function findImport($url) { |
1548 | 1575 | $urls = array(); |
1549 | 1576 | |
@@ -1579,6 +1606,9 @@ discard block |
||
1579 | 1606 | return null; |
1580 | 1607 | } |
1581 | 1608 | |
1609 | + /** |
|
1610 | + * @param string $name |
|
1611 | + */ |
|
1582 | 1612 | protected function fileExists($name) { |
1583 | 1613 | return is_file($name); |
1584 | 1614 | } |
@@ -1766,6 +1796,11 @@ discard block |
||
1766 | 1796 | return array('hsl', fmod($h, 360), $s * 100, $l * 100); |
1767 | 1797 | } |
1768 | 1798 | |
1799 | + /** |
|
1800 | + * @param double $m1 |
|
1801 | + * @param double $m2 |
|
1802 | + * @param double $h |
|
1803 | + */ |
|
1769 | 1804 | public function hueToRGB($m1, $m2, $h) { |
1770 | 1805 | if ($h < 0) |
1771 | 1806 | $h += 1; |
@@ -1850,6 +1885,10 @@ discard block |
||
1850 | 1885 | } |
1851 | 1886 | |
1852 | 1887 | // helper function for adjust_color, change_color, and scale_color |
1888 | + |
|
1889 | + /** |
|
1890 | + * @param string $fn |
|
1891 | + */ |
|
1853 | 1892 | protected function alter_color($args, $fn) { |
1854 | 1893 | $color = $this->assertColor($args[0]); |
1855 | 1894 | |
@@ -2047,6 +2086,9 @@ discard block |
||
2047 | 2086 | return array("number", $hsl[3], "%"); |
2048 | 2087 | } |
2049 | 2088 | |
2089 | + /** |
|
2090 | + * @param integer $idx |
|
2091 | + */ |
|
2050 | 2092 | protected function adjustHsl($color, $idx, $amount) { |
2051 | 2093 | $hsl = $this->toHSL($color[1], $color[2], $color[3]); |
2052 | 2094 | $hsl[$idx] += $amount; |
@@ -2965,6 +3007,10 @@ discard block |
||
2965 | 3007 | return false; |
2966 | 3008 | } |
2967 | 3009 | |
3010 | + /** |
|
3011 | + * @param string $what |
|
3012 | + * @param boolean $eatWhitespace |
|
3013 | + */ |
|
2968 | 3014 | protected function literal($what, $eatWhitespace = null) { |
2969 | 3015 | if (is_null($eatWhitespace)) $eatWhitespace = $this->eatWhiteDefault; |
2970 | 3016 | |
@@ -2997,6 +3043,9 @@ discard block |
||
2997 | 3043 | return $b; |
2998 | 3044 | } |
2999 | 3045 | |
3046 | + /** |
|
3047 | + * @param string $type |
|
3048 | + */ |
|
3000 | 3049 | protected function pushSpecialBlock($type) { |
3001 | 3050 | $block = $this->pushBlock(null); |
3002 | 3051 | $block->type = $type; |
@@ -3123,6 +3172,9 @@ discard block |
||
3123 | 3172 | return $this->genericList($out, "expression"); |
3124 | 3173 | } |
3125 | 3174 | |
3175 | + /** |
|
3176 | + * @param string $parseItem |
|
3177 | + */ |
|
3126 | 3178 | protected function genericList(&$out, $parseItem, $delim="", $flatten=true) { |
3127 | 3179 | $s = $this->seek(); |
3128 | 3180 | $items = array(); |
@@ -3171,6 +3223,9 @@ discard block |
||
3171 | 3223 | return false; |
3172 | 3224 | } |
3173 | 3225 | |
3226 | + /** |
|
3227 | + * @param integer $minP |
|
3228 | + */ |
|
3174 | 3229 | protected function expHelper($lhs, $minP) { |
3175 | 3230 | $opstr = self::$operatorStr; |
3176 | 3231 | |
@@ -3518,6 +3573,11 @@ discard block |
||
3518 | 3573 | } |
3519 | 3574 | |
3520 | 3575 | // an unbounded string stopped by $end |
3576 | + |
|
3577 | + /** |
|
3578 | + * @param string $end |
|
3579 | + * @param string $nestingOpen |
|
3580 | + */ |
|
3521 | 3581 | protected function openString($end, &$out, $nestingOpen=null) { |
3522 | 3582 | $oldWhite = $this->eatWhiteDefault; |
3523 | 3583 | $this->eatWhiteDefault = false; |
@@ -3850,6 +3910,9 @@ discard block |
||
3850 | 3910 | return false; |
3851 | 3911 | } |
3852 | 3912 | |
3913 | + /** |
|
3914 | + * @param boolean $eatWhitespace |
|
3915 | + */ |
|
3853 | 3916 | protected function keyword(&$word, $eatWhitespace = null) { |
3854 | 3917 | if ($this->match('([\w_\-\*!"\'\\\\][\w\-_"\'\\\\]*)', |
3855 | 3918 | $m, $eatWhitespace)) |
@@ -3959,6 +4022,10 @@ discard block |
||
3959 | 4022 | } |
3960 | 4023 | |
3961 | 4024 | // try to match something on head of buffer |
4025 | + |
|
4026 | + /** |
|
4027 | + * @param string $regex |
|
4028 | + */ |
|
3962 | 4029 | protected function match($regex, &$out, $eatWhitespace = null) { |
3963 | 4030 | if (is_null($eatWhitespace)) $eatWhitespace = $this->eatWhiteDefault; |
3964 | 4031 | |
@@ -3987,6 +4054,9 @@ discard block |
||
3987 | 4054 | return $gotWhite; |
3988 | 4055 | } |
3989 | 4056 | |
4057 | + /** |
|
4058 | + * @param string $regex |
|
4059 | + */ |
|
3990 | 4060 | protected function peek($regex, &$out, $from=null) { |
3991 | 4061 | if (is_null($from)) $from = $this->count; |
3992 | 4062 | |
@@ -4253,6 +4323,7 @@ discard block |
||
4253 | 4323 | /** |
4254 | 4324 | * Get path to cached .css file |
4255 | 4325 | * |
4326 | + * @param string $fname |
|
4256 | 4327 | * @return string |
4257 | 4328 | */ |
4258 | 4329 | protected function cacheName($fname) { |
@@ -4262,6 +4333,7 @@ discard block |
||
4262 | 4333 | /** |
4263 | 4334 | * Get path to cached imports |
4264 | 4335 | * |
4336 | + * @param string $out |
|
4265 | 4337 | * @return string |
4266 | 4338 | */ |
4267 | 4339 | protected function importsCacheName($out) { |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | |
46 | 46 | /** |
47 | 47 | * Returns status of WordAds approval. |
48 | - * @return boolean true if site is WordAds approved |
|
48 | + * @return string true if site is WordAds approved |
|
49 | 49 | * |
50 | 50 | * @since 4.5.0 |
51 | 51 | */ |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | |
60 | 60 | /** |
61 | 61 | * Returns status of WordAds active. |
62 | - * @return boolean true if ads are active on site |
|
62 | + * @return string true if ads are active on site |
|
63 | 63 | * |
64 | 64 | * @since 4.5.0 |
65 | 65 | */ |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | |
74 | 74 | /** |
75 | 75 | * Returns status of WordAds house ads. |
76 | - * @return boolean true if WP.com house ads should be shown |
|
76 | + * @return string true if WP.com house ads should be shown |
|
77 | 77 | * |
78 | 78 | * @since 4.5.0 |
79 | 79 | */ |
@@ -90,6 +90,9 @@ discard block |
||
90 | 90 | return $html; |
91 | 91 | } |
92 | 92 | |
93 | + /** |
|
94 | + * @param string $regexp |
|
95 | + */ |
|
93 | 96 | static public function regexp_entities( $regexp ) { |
94 | 97 | return preg_replace( |
95 | 98 | '/\[\^&([^\]]+)\]\*\+/', |
@@ -128,6 +131,9 @@ discard block |
||
128 | 131 | return self::dispatch( $matches ); |
129 | 132 | } |
130 | 133 | |
134 | + /** |
|
135 | + * @param string[] $matches |
|
136 | + */ |
|
131 | 137 | static function dispatch( $matches ) { |
132 | 138 | $html = preg_replace( '%�*58;//%', '://', $matches[0] ); |
133 | 139 | $attrs = self::get_attrs( $html ); |
@@ -138,6 +138,7 @@ |
||
138 | 138 | /** |
139 | 139 | * Returns a class value, `output-the-content` by default. |
140 | 140 | * Used for themes with a 'Mixed' Blog Display so we can tell which output is by default. |
141 | + * @param string $new_class |
|
141 | 142 | */ |
142 | 143 | function jetpack_the_content_customizer_class( $new_class = null ) { |
143 | 144 | static $class; |
@@ -298,6 +298,9 @@ discard block |
||
298 | 298 | return $sync_modules; |
299 | 299 | } |
300 | 300 | |
301 | + /** |
|
302 | + * @return string |
|
303 | + */ |
|
301 | 304 | static function sanitize_filtered_sync_cron_schedule( $schedule ) { |
302 | 305 | $schedule = sanitize_key( $schedule ); |
303 | 306 | $schedules = wp_get_schedules(); |
@@ -333,6 +336,9 @@ discard block |
||
333 | 336 | ) ); |
334 | 337 | } |
335 | 338 | |
339 | + /** |
|
340 | + * @param string $hook |
|
341 | + */ |
|
336 | 342 | static function maybe_schedule_sync_cron( $schedule, $hook ) { |
337 | 343 | if ( ! $hook ) { |
338 | 344 | return; |
@@ -893,7 +893,7 @@ discard block |
||
893 | 893 | } |
894 | 894 | /** |
895 | 895 | * Does the network allow admins to add new users. |
896 | - * @return boolian |
|
896 | + * @return boolean |
|
897 | 897 | */ |
898 | 898 | static function network_add_new_users( $option = null ) { |
899 | 899 | return (bool) get_site_option( 'add_new_users' ); |
@@ -998,7 +998,7 @@ discard block |
||
998 | 998 | * database which could be set to anything as opposed to what this function returns. |
999 | 999 | * @param bool $option |
1000 | 1000 | * |
1001 | - * @return boolean |
|
1001 | + * @return string |
|
1002 | 1002 | */ |
1003 | 1003 | public function is_main_network_option( $option ) { |
1004 | 1004 | // return '1' or '' |
@@ -1009,7 +1009,7 @@ discard block |
||
1009 | 1009 | * Return true if we are with multi-site or multi-network false if we are dealing with single site. |
1010 | 1010 | * |
1011 | 1011 | * @param string $option |
1012 | - * @return boolean |
|
1012 | + * @return string |
|
1013 | 1013 | */ |
1014 | 1014 | public function is_multisite( $option ) { |
1015 | 1015 | return (string) (bool) is_multisite(); |
@@ -1071,7 +1071,7 @@ discard block |
||
1071 | 1071 | |
1072 | 1072 | /** |
1073 | 1073 | * Returns true if the site has file write access false otherwise. |
1074 | - * @return string ( '1' | '0' ) |
|
1074 | + * @return integer ( '1' | '0' ) |
|
1075 | 1075 | **/ |
1076 | 1076 | public static function file_system_write_access() { |
1077 | 1077 | if ( ! function_exists( 'get_filesystem_method' ) ) { |
@@ -1280,6 +1280,7 @@ discard block |
||
1280 | 1280 | * @access public |
1281 | 1281 | * @static |
1282 | 1282 | * |
1283 | + * @param string $feature |
|
1283 | 1284 | * @return bool True if plan supports feature, false if not |
1284 | 1285 | */ |
1285 | 1286 | public static function active_plan_supports( $feature ) { |
@@ -1779,6 +1780,7 @@ discard block |
||
1779 | 1780 | * Stores two secrets and a timestamp so WordPress.com can make a request back and verify an action |
1780 | 1781 | * Does some extra verification so urls (such as those to public-api, register, etc) can't just be crafted |
1781 | 1782 | * $name must be a registered option name. |
1783 | + * @param string $name |
|
1782 | 1784 | */ |
1783 | 1785 | public static function create_nonce( $name ) { |
1784 | 1786 | $secret = wp_generate_password( 32, false ) . ':' . wp_generate_password( 32, false ) . ':' . ( time() + 600 ); |
@@ -1836,6 +1838,7 @@ discard block |
||
1836 | 1838 | * @param int $user_id |
1837 | 1839 | * @param string $token |
1838 | 1840 | * return bool |
1841 | + * @param boolean $is_master_user |
|
1839 | 1842 | */ |
1840 | 1843 | public static function update_user_token( $user_id, $token, $is_master_user ) { |
1841 | 1844 | // not designed for concurrent updates |
@@ -2230,6 +2233,7 @@ discard block |
||
2230 | 2233 | |
2231 | 2234 | /** |
2232 | 2235 | * Like core's get_file_data implementation, but caches the result. |
2236 | + * @param string $file |
|
2233 | 2237 | */ |
2234 | 2238 | public static function get_file_data( $file, $headers ) { |
2235 | 2239 | //Get just the filename from $file (i.e. exclude full path) so that a consistent hash is generated |
@@ -2258,7 +2262,7 @@ discard block |
||
2258 | 2262 | * |
2259 | 2263 | * @param string $tag Tag as it appears in each module heading. |
2260 | 2264 | * |
2261 | - * @return mixed |
|
2265 | + * @return string |
|
2262 | 2266 | */ |
2263 | 2267 | public static function translate_module_tag( $tag ) { |
2264 | 2268 | return jetpack_get_module_i18n_tag( $tag ); |
@@ -2271,7 +2275,7 @@ discard block |
||
2271 | 2275 | * |
2272 | 2276 | * @param array $modules |
2273 | 2277 | * |
2274 | - * @return string|void |
|
2278 | + * @return string |
|
2275 | 2279 | */ |
2276 | 2280 | public static function get_translated_modules( $modules ) { |
2277 | 2281 | foreach ( $modules as $index => $module ) { |
@@ -2600,6 +2604,9 @@ discard block |
||
2600 | 2604 | return self::update_active_modules( $new ); |
2601 | 2605 | } |
2602 | 2606 | |
2607 | + /** |
|
2608 | + * @param string $module |
|
2609 | + */ |
|
2603 | 2610 | public static function enable_module_configurable( $module ) { |
2604 | 2611 | $module = Jetpack::get_module_slug( $module ); |
2605 | 2612 | add_filter( 'jetpack_module_configurable_' . $module, '__return_true' ); |
@@ -2610,21 +2617,33 @@ discard block |
||
2610 | 2617 | return Jetpack::admin_url( array( 'page' => 'jetpack', 'configure' => $module ) ); |
2611 | 2618 | } |
2612 | 2619 | |
2620 | + /** |
|
2621 | + * @param string $module |
|
2622 | + */ |
|
2613 | 2623 | public static function module_configuration_load( $module, $method ) { |
2614 | 2624 | $module = Jetpack::get_module_slug( $module ); |
2615 | 2625 | add_action( 'jetpack_module_configuration_load_' . $module, $method ); |
2616 | 2626 | } |
2617 | 2627 | |
2628 | + /** |
|
2629 | + * @param string $module |
|
2630 | + */ |
|
2618 | 2631 | public static function module_configuration_head( $module, $method ) { |
2619 | 2632 | $module = Jetpack::get_module_slug( $module ); |
2620 | 2633 | add_action( 'jetpack_module_configuration_head_' . $module, $method ); |
2621 | 2634 | } |
2622 | 2635 | |
2636 | + /** |
|
2637 | + * @param string $module |
|
2638 | + */ |
|
2623 | 2639 | public static function module_configuration_screen( $module, $method ) { |
2624 | 2640 | $module = Jetpack::get_module_slug( $module ); |
2625 | 2641 | add_action( 'jetpack_module_configuration_screen_' . $module, $method ); |
2626 | 2642 | } |
2627 | 2643 | |
2644 | + /** |
|
2645 | + * @param string $module |
|
2646 | + */ |
|
2628 | 2647 | public static function module_configuration_activation_screen( $module, $method ) { |
2629 | 2648 | $module = Jetpack::get_module_slug( $module ); |
2630 | 2649 | add_action( 'display_activate_module_setting_' . $module, $method ); |
@@ -2632,6 +2651,9 @@ discard block |
||
2632 | 2651 | |
2633 | 2652 | /* Installation */ |
2634 | 2653 | |
2654 | + /** |
|
2655 | + * @param string $message |
|
2656 | + */ |
|
2635 | 2657 | public static function bail_on_activation( $message, $deactivate = true ) { |
2636 | 2658 | ?> |
2637 | 2659 | <!doctype html> |
@@ -3280,7 +3302,7 @@ discard block |
||
3280 | 3302 | * Add help to the Jetpack page |
3281 | 3303 | * |
3282 | 3304 | * @since Jetpack (1.2.3) |
3283 | - * @return false if not the Jetpack page |
|
3305 | + * @return false|null if not the Jetpack page |
|
3284 | 3306 | */ |
3285 | 3307 | function admin_help() { |
3286 | 3308 | $current_screen = get_current_screen(); |
@@ -4278,6 +4300,7 @@ discard block |
||
4278 | 4300 | /** |
4279 | 4301 | * Returns the requested Jetpack API URL |
4280 | 4302 | * |
4303 | + * @param string $relative_url |
|
4281 | 4304 | * @return string |
4282 | 4305 | */ |
4283 | 4306 | public static function api_url( $relative_url ) { |
@@ -4422,7 +4445,8 @@ discard block |
||
4422 | 4445 | * Note these tokens are unique per call, NOT static per site for connecting. |
4423 | 4446 | * |
4424 | 4447 | * @since 2.6 |
4425 | - * @return array |
|
4448 | + * @param string $action |
|
4449 | + * @return string |
|
4426 | 4450 | */ |
4427 | 4451 | public function generate_secrets( $action, $exp = 600 ) { |
4428 | 4452 | $secret = wp_generate_password( 32, false ) // secret_1 |
@@ -4849,7 +4873,6 @@ discard block |
||
4849 | 4873 | /** |
4850 | 4874 | * Report authentication status to the WP REST API. |
4851 | 4875 | * |
4852 | - * @param WP_Error|mixed $result Error from another authentication handler, null if we should handle it, or another value if not |
|
4853 | 4876 | * @return WP_Error|boolean|null {@see WP_JSON_Server::check_authentication} |
4854 | 4877 | */ |
4855 | 4878 | public function wp_rest_authentication_errors( $value ) { |
@@ -4859,6 +4882,10 @@ discard block |
||
4859 | 4882 | return $this->rest_authentication_status; |
4860 | 4883 | } |
4861 | 4884 | |
4885 | + /** |
|
4886 | + * @param integer $timestamp |
|
4887 | + * @param string $nonce |
|
4888 | + */ |
|
4862 | 4889 | function add_nonce( $timestamp, $nonce ) { |
4863 | 4890 | global $wpdb; |
4864 | 4891 | static $nonces_used_this_request = array(); |
@@ -5004,6 +5031,7 @@ discard block |
||
5004 | 5031 | * @param string $key |
5005 | 5032 | * @param string $value |
5006 | 5033 | * @param bool $restate private |
5034 | + * @return string |
|
5007 | 5035 | */ |
5008 | 5036 | public static function state( $key = null, $value = null, $restate = false ) { |
5009 | 5037 | static $state = array(); |
@@ -5060,6 +5088,9 @@ discard block |
||
5060 | 5088 | Jetpack::state( null, null, true ); |
5061 | 5089 | } |
5062 | 5090 | |
5091 | + /** |
|
5092 | + * @param string $file |
|
5093 | + */ |
|
5063 | 5094 | public static function check_privacy( $file ) { |
5064 | 5095 | static $is_site_publicly_accessible = null; |
5065 | 5096 | |
@@ -5809,8 +5840,8 @@ discard block |
||
5809 | 5840 | * - Absolute URLs `http://domain.com/feh.png` |
5810 | 5841 | * - Domain root relative URLs `/feh.png` |
5811 | 5842 | * |
5812 | - * @param $css string: The raw CSS -- should be read in directly from the file. |
|
5813 | - * @param $css_file_url : The URL that the file can be accessed at, for calculating paths from. |
|
5843 | + * @param string $css string: The raw CSS -- should be read in directly from the file. |
|
5844 | + * @param string $css_file_url : The URL that the file can be accessed at, for calculating paths from. |
|
5814 | 5845 | * |
5815 | 5846 | * @return mixed|string |
5816 | 5847 | */ |
@@ -6101,7 +6132,7 @@ discard block |
||
6101 | 6132 | * |
6102 | 6133 | * @param string $option_name |
6103 | 6134 | * |
6104 | - * @return bool |
|
6135 | + * @return false|null |
|
6105 | 6136 | */ |
6106 | 6137 | public static function jumpstart_has_updated_module_option( $option_name = '' ) { |
6107 | 6138 | // Bail if Jump Start has already been dismissed |
@@ -6192,7 +6223,6 @@ discard block |
||
6192 | 6223 | } |
6193 | 6224 | |
6194 | 6225 | /** |
6195 | - * @param mixed $result Value for the user's option |
|
6196 | 6226 | * @return mixed |
6197 | 6227 | */ |
6198 | 6228 | function get_user_option_meta_box_order_dashboard( $sorted ) { |
@@ -283,6 +283,11 @@ discard block |
||
283 | 283 | ) ); |
284 | 284 | } |
285 | 285 | |
286 | + /** |
|
287 | + * @param string $path |
|
288 | + * @param string $classname |
|
289 | + * @param Jetpack_IXR_Client $constructor_arguments |
|
290 | + */ |
|
286 | 291 | public static function route( $path, $classname, $method, |
287 | 292 | $constructor_arguments = NULL, |
288 | 293 | $endpoint_arguments = NULL |
@@ -1980,7 +1985,7 @@ discard block |
||
1980 | 1985 | * |
1981 | 1986 | * @param string $route Regular expression for the endpoint with the module slug to return. |
1982 | 1987 | * |
1983 | - * @return array |
|
1988 | + * @return string |
|
1984 | 1989 | */ |
1985 | 1990 | public static function get_module_requested( $route = '/module/(?P<slug>[a-z\-]+)' ) { |
1986 | 1991 | |
@@ -2005,7 +2010,7 @@ discard block |
||
2005 | 2010 | * @param string $modules Can be a single module or a list of modules. |
2006 | 2011 | * @param null|string $slug Slug of the module in the first parameter. |
2007 | 2012 | * |
2008 | - * @return array |
|
2013 | + * @return string |
|
2009 | 2014 | */ |
2010 | 2015 | public static function prepare_modules_for_response( $modules = '', $slug = null ) { |
2011 | 2016 | if ( get_option( 'permalink_structure' ) ) { |
@@ -163,7 +163,7 @@ |
||
163 | 163 | /** |
164 | 164 | * Iterates through expected items ( plugins or themes ) and compares them to actual results. |
165 | 165 | * |
166 | - * @param $items 'plugin' or 'theme' |
|
166 | + * @param string $items 'plugin' or 'theme' |
|
167 | 167 | */ |
168 | 168 | private function log_items( $items ) { |
169 | 169 | if ( ! isset( $this->expected[ $items ] ) ) { |
@@ -64,6 +64,7 @@ |
||
64 | 64 | /** |
65 | 65 | * Updates user data |
66 | 66 | * |
67 | + * @param integer $user_id |
|
67 | 68 | * @return (array) |
68 | 69 | */ |
69 | 70 | public function update_user( $user_id, $blog_id ) { |