Completed
Push — add/sync-action ( d04c20...798b6b )
by
unknown
14:28 queued 03:27
created
sync/class.jetpack-sync-queue.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@  discard block
 block discarded – undo
32 32
 	private $checkout_size;
33 33
 	private $row_iterator;
34 34
 
35
+	/**
36
+	 * @param string $id
37
+	 */
35 38
 	function __construct( $id, $checkout_size = 10 ) {
36 39
 		$this->id            = str_replace( '-', '_', $id ); // necessary to ensure we don't have ID collisions in the SQL
37 40
 		$this->checkout_size = $checkout_size;
@@ -280,6 +283,9 @@  discard block
 block discarded – undo
280 283
 		return get_transient( $this->get_checkout_transient_name() );
281 284
 	}
282 285
 
286
+	/**
287
+	 * @param string $checkout_id
288
+	 */
283 289
 	private function set_checkout_id( $checkout_id ) {
284 290
 		return set_transient( $this->get_checkout_transient_name(), $checkout_id, 5*60 ); // 5 minute timeout
285 291
 	}
Please login to merge, or discard this patch.