Completed
Push — jp4/sandbox ( be2bc9...dec9e3 )
by
unknown
45:57 queued 36:13
created
modules/shortcodes/gist.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -51,6 +51,9 @@
 block discarded – undo
51 51
 	return  $return;
52 52
 }
53 53
 
54
+/**
55
+ * @param string $file
56
+ */
54 57
 function github_gist_simple_embed( $id, $file ) {
55 58
 	$embed_url = $id . '.js' . $file;
56 59
 
Please login to merge, or discard this patch.
_inc/lib/tracks/class.tracks-client.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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.
Please login to merge, or discard this patch.
_inc/lib/tracks/client.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
  * @param string $event_name The name of the event
38 38
  * @param array $properties Custom properties to send with the event
39 39
  * @param int $event_timestamp_millis The time in millis since 1970-01-01 00:00:00 when the event occurred
40
- * @return \Jetpack_Tracks_Event|\WP_Error
40
+ * @return Jetpack_Tracks_Event
41 41
  */
42 42
 function jetpack_tracks_build_event_obj( $user, $event_name, $properties = array(), $event_timestamp_millis = false ) {
43 43
 
@@ -107,7 +107,6 @@  discard block
 block discarded – undo
107 107
 /**
108 108
  * Record an event in Tracks - this is the preferred way to record events from PHP.
109 109
  *
110
- * @param mixed $identity username, user_id, or WP_user object
111 110
  * @param string $event_name The name of the event
112 111
  * @param array $properties Custom properties to send with the event
113 112
  * @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.
_inc/lib/admin-pages/4.0/class.jetpack-landing-page.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -64,6 +64,10 @@
 block discarded – undo
64 64
 	 * @param  string Name of the module tag
65 65
 	 * @return array  The module slug, config url, and name of each Jump Start module
66 66
 	 */
67
+
68
+	/**
69
+	 * @param string $tag
70
+	 */
67 71
 	function jumpstart_module_tag( $tag ) {
68 72
 		$modules = Jetpack_Admin::init()->get_modules();
69 73
 
Please login to merge, or discard this patch.