Completed
Push — fix/changes-core ( 7f968e )
by
unknown
08:56
created
_inc/lib/core-api/class.jetpack-core-api-module-endpoints.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
 	 *
177 177
 	 * @since 4.3.0
178 178
 	 *
179
-	 * @return array Array of Jetpack modules.
179
+	 * @return string Array of Jetpack modules.
180 180
 	 */
181 181
 	public function get_modules() {
182 182
 		require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-admin.php' );
@@ -1104,7 +1104,6 @@  discard block
 block discarded – undo
1104 1104
 	 *
1105 1105
 	 * @since 4.3.0
1106 1106
 	 *
1107
-	 * @param WP_REST_Request $request
1108 1107
 	 *
1109 1108
 	 * @return bool does a current user have enough privileges.
1110 1109
 	 */
Please login to merge, or discard this patch.
modules/videopress/class.jetpack-videopress.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -67,6 +67,7 @@
 block discarded – undo
67 67
 	 *
68 68
 	 * Similar to current_user_can, but internal to VideoPress. Returns
69 69
 	 * true if the given VideoPress capability is allowed by the given user.
70
+	 * @param string $cap
70 71
 	 */
71 72
 	public function can( $cap, $user_id = false ) {
72 73
 		if ( ! $user_id ) {
Please login to merge, or discard this patch.
sync/class.jetpack-sync-module-callables.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -115,6 +115,9 @@
 block discarded – undo
115 115
 		delete_transient( self::CALLABLES_AWAIT_TRANSIENT_NAME );
116 116
 	}
117 117
 
118
+	/**
119
+	 * @param integer $checksum
120
+	 */
118 121
 	public function should_send_callable( $callable_checksums, $name, $checksum ) {
119 122
 		if ( in_array( $name, array( 'home_url', 'site_url' ) ) && Jetpack_Options::get_option( 'migrate_for_idc' ) ) {
120 123
 			return true;
Please login to merge, or discard this patch.