Completed
Push — reorg/fix-build ( 0a41d9...390e55 )
by Yaroslav
198:26 queued 183:12
created
src/packages/analyzer/src/class-declarations.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -33,6 +33,9 @@
 block discarded – undo
33 33
 		}
34 34
 	}
35 35
 
36
+	/**
37
+	 * @param string $root
38
+	 */
36 39
 	public function scan_dir( $root, $exclude = array() ) {
37 40
 
38 41
 		if ( is_null( $exclude ) || ! is_array( $exclude ) ) {
Please login to merge, or discard this patch.
src/packages/analyzer/src/class-differences.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -9,6 +9,9 @@
 block discarded – undo
9 9
 
10 10
 class Differences extends PersistentList {
11 11
 
12
+	/**
13
+	 * @param string $path
14
+	 */
12 15
 	private function slashit( $path ) {
13 16
 		$path .= ( substr( $path, -1 ) == '/' ? '' : '/' );
14 17
 		return $path;
Please login to merge, or discard this patch.
src/packages/analyzer/src/class-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.
src/packages/analyzer/src/class-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.
src/packages/analyzer/src/Dependencies/class-dependency.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -9,6 +9,9 @@
 block discarded – undo
9 9
 	public $declaration;
10 10
 	public $invocation_root;
11 11
 
12
+	/**
13
+	 * @param string $invocation_root
14
+	 */
12 15
 	function __construct( $invocation, $declaration, $invocation_root = null ) {
13 16
 		$this->invocation      = $invocation;
14 17
 		$this->declaration     = $declaration;
Please login to merge, or discard this patch.
src/packages/analyzer/src/Invocations/class-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.
src/packages/connection/legacy/class-jetpack-ixr-client.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -50,6 +50,7 @@
 block discarded – undo
50 50
 	 * Perform the IXR request.
51 51
 	 *
52 52
 	 * @param string[] ...$args IXR args.
53
+	 * @param string $args
53 54
 	 *
54 55
 	 * @return bool True if request succeeded, false otherwise.
55 56
 	 */
Please login to merge, or discard this patch.
src/packages/connection/legacy/class-jetpack-ixr-clientmulticall.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@
 block discarded – undo
25 25
 	 * The rest of the arguments are the params specified to the method.
26 26
 	 *
27 27
 	 * @param string[] ...$args IXR args.
28
+	 * @param string $args
28 29
 	 */
29 30
 	public function addCall( ...$args ) {
30 31
 		$method_name   = array_shift( $args );
Please login to merge, or discard this patch.
src/packages/connection/legacy/class-jetpack-signature.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -165,7 +165,7 @@
 block discarded – undo
165 165
 	 * @param string $url              Request URL.
166 166
 	 * @param mixed  $body             Request body.
167 167
 	 * @param bool   $verify_body_hash Whether to verify the body hash against the body.
168
-	 * @return string|WP_Error Request signature, or a WP_Error on failure.
168
+	 * @return string Request signature, or a WP_Error on failure.
169 169
 	 */
170 170
 	public function sign_request( $token = '', $timestamp = 0, $nonce = '', $body_hash = '', $method = '', $url = '', $body = null, $verify_body_hash = true ) {
171 171
 		if ( ! $this->secret ) {
Please login to merge, or discard this patch.