Completed
Push — update/use-password-checker-pa... ( bbe4fb...a63c69 )
by
unknown
181:03 queued 160:29
created
projects/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.
projects/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.
projects/packages/analyzer/src/class-declarations.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@  discard block
 block discarded – undo
22 22
 
23 23
 	/**
24 24
 	 * Scan every PHP in the root
25
+	 * @param string $root
25 26
 	 */
26 27
 	public function scan( $root, $exclude = array() ) {
27 28
 		if ( is_dir( $root ) ) {
@@ -33,6 +34,9 @@  discard block
 block discarded – undo
33 34
 		}
34 35
 	}
35 36
 
37
+	/**
38
+	 * @param string $root
39
+	 */
36 40
 	public function scan_dir( $root, $exclude = array() ) {
37 41
 
38 42
 		if ( is_null( $exclude ) || ! is_array( $exclude ) ) {
Please login to merge, or discard this patch.