Passed
Push — master ( 58fd78...dc2798 )
by Morris
09:53 queued 10s
created
lib/private/IntegrityCheck/Iterator/ExcludeFileByNameFilterIterator.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -68,12 +68,12 @@
 block discarded – undo
68 68
 		}
69 69
 
70 70
 		$currentFileName = $current->getFilename();
71
-		if (in_array($currentFileName, $this->excludedFilenames, true)){
71
+		if (in_array($currentFileName, $this->excludedFilenames, true)) {
72 72
 			return false;
73 73
 		}
74 74
 
75
-		foreach ($this->excludedFilenamePatterns as $pattern){
76
-			if (preg_match($pattern, $currentFileName) > 0){
75
+		foreach ($this->excludedFilenamePatterns as $pattern) {
76
+			if (preg_match($pattern, $currentFileName) > 0) {
77 77
 				return false;
78 78
 			}
79 79
 		}
Please login to merge, or discard this patch.