Completed
Push — add/oauth-connection ( d724d4...0e4828 )
by
unknown
10:54
created
packages/analyzer/src/Invocations.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -37,6 +37,9 @@
 block discarded – undo
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 ) ) {
Please login to merge, or discard this patch.
packages/analyzer/src/Invocations/Visitor.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -9,6 +9,9 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
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/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/status/tests/php/test_Status.php 1 patch
Doc Comments   +3 added lines, -5 removed lines patch added patch discarded remove patch
@@ -176,7 +176,6 @@  discard block
 block discarded – undo
176 176
 	/**
177 177
 	 * Mock a set of filters.
178 178
 	 *
179
-	 * @param array $args Array of filters with their arguments.
180 179
 	 * @return phpmock\Mock The mock object.
181 180
 	 */
182 181
 	protected function mock_filters( $filters = array() ) {
@@ -186,8 +185,7 @@  discard block
 block discarded – undo
186 185
 	/**
187 186
 	 * Mock a set of constants.
188 187
 	 *
189
-	 * @param array $args Array of sets with constants and their respective values.
190
-	 * @return phpmock\Mock The mock object.
188
+	 * @return phpmock\Mock[] The mock object.
191 189
 	 */
192 190
 	protected function mock_constants( $constants = array() ) {
193 191
 		$prepare_constant = function( $constant ) {
@@ -204,7 +202,7 @@  discard block
 block discarded – undo
204 202
 	 * Mock a global function and make it return a certain value.
205 203
 	 *
206 204
 	 * @param string $function_name Name of the function.
207
-	 * @param mixed  $return_value  Return value of the function.
205
+	 * @param string|boolean  $return_value  Return value of the function.
208 206
 	 * @return phpmock\Mock The mock object.
209 207
 	 */
210 208
 	protected function mock_function( $function_name, $return_value = null ) {
@@ -220,7 +218,7 @@  discard block
 block discarded – undo
220 218
 	/**
221 219
 	 * Mock $wpdb->get_var() and make it return a certain value.
222 220
 	 *
223
-	 * @param mixed  $return_value  Return value of the function.
221
+	 * @param integer  $return_value  Return value of the function.
224 222
 	 * @return PHPUnit\Framework\MockObject\MockObject The mock object.
225 223
 	 */
226 224
 	protected function mock_wpdb_get_var( $return_value = null ) {
Please login to merge, or discard this patch.
packages/sync/src/modules/Callables.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
 	 * @access public
223 223
 	 *
224 224
 	 * @param array $config Full sync configuration for this sync module.
225
-	 * @return array Number of items yet to be enqueued.
225
+	 * @return integer Number of items yet to be enqueued.
226 226
 	 */
227 227
 	public function estimate_full_sync_actions( $config ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
228 228
 		return 1;
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
 	 *
234 234
 	 * @access public
235 235
 	 *
236
-	 * @return array Full sync actions of this module.
236
+	 * @return string[] Full sync actions of this module.
237 237
 	 */
238 238
 	public function get_full_sync_actions() {
239 239
 		return array( 'jetpack_full_sync_callables' );
Please login to merge, or discard this patch.
packages/sync/src/modules/Comments.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -220,7 +220,7 @@
 block discarded – undo
220 220
 	 *
221 221
 	 * @access public
222 222
 	 *
223
-	 * @return array Full sync actions of this module.
223
+	 * @return string[] Full sync actions of this module.
224 224
 	 */
225 225
 	public function get_full_sync_actions() {
226 226
 		return array( 'jetpack_full_sync_comments' );
Please login to merge, or discard this patch.
packages/sync/src/modules/Constants.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 	 * @access public
138 138
 	 *
139 139
 	 * @param array $config Full sync configuration for this sync module.
140
-	 * @return array Number of items yet to be enqueued.
140
+	 * @return integer Number of items yet to be enqueued.
141 141
 	 */
142 142
 	public function estimate_full_sync_actions( $config ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
143 143
 		return 1;
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
 	 *
149 149
 	 * @access public
150 150
 	 *
151
-	 * @return array Full sync actions of this module.
151
+	 * @return string[] Full sync actions of this module.
152 152
 	 */
153 153
 	public function get_full_sync_actions() {
154 154
 		return array( 'jetpack_full_sync_constants' );
Please login to merge, or discard this patch.
packages/sync/src/modules/Full_Sync.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -539,7 +539,7 @@
 block discarded – undo
539 539
 	 * @access private
540 540
 	 *
541 541
 	 * @param string $name    Name of the option.
542
-	 * @param mixed  $default Default value of the option.
542
+	 * @param integer  $default Default value of the option.
543 543
 	 * @return mixed Option value.
544 544
 	 */
545 545
 	private function get_status_option( $name, $default = null ) {
Please login to merge, or discard this patch.