Completed
Push — branch-7.5 ( 93a108...fb0af3 )
by
unknown
63:21 queued 54:27
created
packages/analyzer/src/PersistentList.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -31,6 +31,7 @@
 block discarded – undo
31 31
 
32 32
 	/**
33 33
 	 * Saves the items to a file and returns the file contents
34
+	 * @param string $file_path
34 35
 	 */
35 36
 	public function save( $file_path, $allow_empty = true ) {
36 37
 
Please login to merge, or discard this patch.
packages/analyzer/src/Warnings/Warning.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -10,6 +10,10 @@
 block discarded – undo
10 10
 	public $message;
11 11
 	public $old_declaration;
12 12
 
13
+	/**
14
+	 * @param string $type
15
+	 * @param string $message
16
+	 */
13 17
 	function __construct( $type, $path, $line, $message, $old_declaration ) {
14 18
 		$this->type = $type;
15 19
 		$this->path = $path;
Please login to merge, or discard this patch.
packages/analyzer/src/Declarations/Visitor.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -11,6 +11,9 @@
 block discarded – undo
11 11
 	private $declarations;
12 12
 	private $current_relative_path;
13 13
 
14
+	/**
15
+	 * @param  $declarations
16
+	 */
14 17
 	public function __construct( $current_relative_path, $declarations ) {
15 18
 		$this->current_relative_path = $current_relative_path;
16 19
 		$this->declarations          = $declarations;
Please login to merge, or discard this patch.
packages/tracking/src/Tracking.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,6 +14,9 @@  discard block
 block discarded – undo
14 14
 	private $product_name;
15 15
 	private $connection;
16 16
 
17
+	/**
18
+	 * @param Connection\Manager $connection
19
+	 */
17 20
 	function __construct( $product_name = 'jetpack', $connection = null ) {
18 21
 		$this->product_name = $product_name;
19 22
 		$this->connection   = $connection;
@@ -60,7 +63,6 @@  discard block
 block discarded – undo
60 63
 	/**
61 64
 	 * Record an event in Tracks - this is the preferred way to record events from PHP.
62 65
 	 *
63
-	 * @param mixed  $identity username, user_id, or WP_user object
64 66
 	 * @param string $event_name The name of the event
65 67
 	 * @param array  $properties Custom properties to send with the event
66 68
 	 * @param int    $event_timestamp_millis The time in millis since 1970-01-01 00:00:00 when the event occurred
Please login to merge, or discard this patch.
packages/sync/src/Actions.php 1 patch
Doc Comments   +20 added lines patch added patch discarded remove patch
@@ -134,6 +134,9 @@  discard block
 block discarded – undo
134 134
 		return ( Settings::get_setting( 'sync_via_cron' ) );
135 135
 	}
136 136
 
137
+	/**
138
+	 * @param boolean $should_publicize
139
+	 */
137 140
 	static function prevent_publicize_blacklisted_posts( $should_publicize, $post ) {
138 141
 		if ( in_array( $post->post_type, Settings::get_setting( 'post_types_blacklist' ) ) ) {
139 142
 			return false;
@@ -146,6 +149,13 @@  discard block
 block discarded – undo
146 149
 		Settings::set_importing( true );
147 150
 	}
148 151
 
152
+	/**
153
+	 * @param string $codec_name
154
+	 * @param integer $sent_timestamp
155
+	 * @param integer $queue_id
156
+	 * @param integer $checkout_duration
157
+	 * @param integer $preprocess_duration
158
+	 */
149 159
 	static function send_data( $data, $codec_name, $sent_timestamp, $queue_id, $checkout_duration, $preprocess_duration ) {
150 160
 		\Jetpack::load_xml_rpc_client();
151 161
 
@@ -350,6 +360,9 @@  discard block
 block discarded – undo
350 360
 		return $sync_modules;
351 361
 	}
352 362
 
363
+	/**
364
+	 * @return string
365
+	 */
353 366
 	static function sanitize_filtered_sync_cron_schedule( $schedule ) {
354 367
 		$schedule  = sanitize_key( $schedule );
355 368
 		$schedules = wp_get_schedules();
@@ -387,6 +400,9 @@  discard block
 block discarded – undo
387 400
 		);
388 401
 	}
389 402
 
403
+	/**
404
+	 * @param string $hook
405
+	 */
390 406
 	static function maybe_schedule_sync_cron( $schedule, $hook ) {
391 407
 		if ( ! $hook ) {
392 408
 			return;
@@ -436,6 +452,10 @@  discard block
 block discarded – undo
436 452
 		self::maybe_schedule_sync_cron( $full_sync_cron_schedule, 'jetpack_sync_full_cron' );
437 453
 	}
438 454
 
455
+	/**
456
+	 * @param string $new_version
457
+	 * @param string $old_version
458
+	 */
439 459
 	static function cleanup_on_upgrade( $new_version = null, $old_version = null ) {
440 460
 		if ( wp_next_scheduled( 'jetpack_sync_send_db_checksum' ) ) {
441 461
 			wp_clear_scheduled_hook( 'jetpack_sync_send_db_checksum' );
Please login to merge, or discard this patch.