@@ -183,7 +183,6 @@ |
||
| 183 | 183 | /** |
| 184 | 184 | * Record an event in Tracks - this is the preferred way to record events from PHP. |
| 185 | 185 | * |
| 186 | - * @param mixed $identity username, user_id, or WP_user object |
|
| 187 | 186 | * @param string $event_name The name of the event |
| 188 | 187 | * @param array $properties Custom properties to send with the event |
| 189 | 188 | * @param int $event_timestamp_millis The time in millis since 1970-01-01 00:00:00 when the event occurred |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | |
| 49 | 49 | /** |
| 50 | 50 | * record_event |
| 51 | - * @param mixed $event Event object to send to Tracks. An array will be cast to object. Required. |
|
| 51 | + * @param Jetpack_Tracks_Event $event Event object to send to Tracks. An array will be cast to object. Required. |
|
| 52 | 52 | * Properties are included directly in the pixel query string after light validation. |
| 53 | 53 | * @return mixed True on success, WP_Error on failure |
| 54 | 54 | */ |
@@ -71,6 +71,7 @@ discard block |
||
| 71 | 71 | |
| 72 | 72 | /** |
| 73 | 73 | * Synchronously request the pixel |
| 74 | + * @param string $pixel |
|
| 74 | 75 | */ |
| 75 | 76 | static function record_pixel( $pixel ) { |
| 76 | 77 | // Add the Request Timestamp and URL terminator just before the HTTP request. |
@@ -95,6 +95,9 @@ |
||
| 95 | 95 | return (array) $upgrader->skin->get_upgrade_messages(); |
| 96 | 96 | } |
| 97 | 97 | |
| 98 | + /** |
|
| 99 | + * @param string $plugin_slug |
|
| 100 | + */ |
|
| 98 | 101 | protected static function generate_wordpress_org_plugin_download_link( $plugin_slug ) { |
| 99 | 102 | return "https://downloads.wordpress.org/plugin/$plugin_slug.latest-stable.zip"; |
| 100 | 103 | } |
@@ -115,7 +115,7 @@ |
||
| 115 | 115 | * Mock a global function and make it return a certain value. |
| 116 | 116 | * |
| 117 | 117 | * @param string $function_name Name of the function. |
| 118 | - * @param mixed $return_value Return value of the function. |
|
| 118 | + * @param integer $return_value Return value of the function. |
|
| 119 | 119 | * @return phpmock\Mock The mock object. |
| 120 | 120 | */ |
| 121 | 121 | protected function mock_function( $function_name, $return_value = null ) { |
@@ -160,7 +160,7 @@ discard block |
||
| 160 | 160 | * @param string $vendorPath Path to the vendor directory. |
| 161 | 161 | * @param string $basePath Base Path. |
| 162 | 162 | * |
| 163 | - * @return array $classMap |
|
| 163 | + * @return string $classMap |
|
| 164 | 164 | */ |
| 165 | 165 | private function getClassMap( array $autoloads, Filesystem $filesystem, $vendorPath, $basePath ) { |
| 166 | 166 | $blacklist = null; |
@@ -224,7 +224,7 @@ discard block |
||
| 224 | 224 | /** |
| 225 | 225 | * Generate the PHP that will be used in the autoload_classmap_package.php files. |
| 226 | 226 | * |
| 227 | - * @param srting $classMap class map array string that is to be written out to the file. |
|
| 227 | + * @param string $classMap class map array string that is to be written out to the file. |
|
| 228 | 228 | * |
| 229 | 229 | * @return string |
| 230 | 230 | */ |
@@ -14,6 +14,9 @@ |
||
| 14 | 14 | public $line; |
| 15 | 15 | public $func_name; |
| 16 | 16 | |
| 17 | + /** |
|
| 18 | + * @param string $func_name |
|
| 19 | + */ |
|
| 17 | 20 | public function __construct( $path, $line, $func_name ) { |
| 18 | 21 | $this->path = $path; |
| 19 | 22 | $this->line = $line; |
@@ -33,6 +33,9 @@ |
||
| 33 | 33 | } |
| 34 | 34 | } |
| 35 | 35 | |
| 36 | + /** |
|
| 37 | + * @param string $root |
|
| 38 | + */ |
|
| 36 | 39 | public function scan_dir( $root, $exclude = array() ) { |
| 37 | 40 | |
| 38 | 41 | if ( is_null( $exclude ) || ! is_array( $exclude ) ) { |
@@ -37,6 +37,9 @@ |
||
| 37 | 37 | } |
| 38 | 38 | } |
| 39 | 39 | |
| 40 | + /** |
|
| 41 | + * @param string $root |
|
| 42 | + */ |
|
| 40 | 43 | public function scan_dir( $root, $exclude = array() ) { |
| 41 | 44 | $filter = function ( $file, $key, $iterator ) use ( $exclude ) { |
| 42 | 45 | if ( $iterator->hasChildren() && ! in_array( $file->getFilename(), $exclude ) ) { |
@@ -9,6 +9,9 @@ |
||
| 9 | 9 | private $invocations; |
| 10 | 10 | private $file_path; |
| 11 | 11 | |
| 12 | + /** |
|
| 13 | + * @param $invocations |
|
| 14 | + */ |
|
| 12 | 15 | public function __construct( $file_path, $invocations ) { |
| 13 | 16 | $this->file_path = $file_path; |
| 14 | 17 | $this->invocations = $invocations; |