Completed
Push — master ( 6ed456...b8f82c )
by Adam
03:21
created
commands/PhpUnit.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 
87 87
 		$currdir = getcwd();
88 88
 		$result = @chdir($this->workingDir);
89
-		if(!$result){
89
+		if (!$result) {
90 90
 			$this->error("Cannot change working directory to '$this->workingDir'.");
91 91
 		}
92 92
 
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
 		}
99 99
 
100 100
 		$result = @chdir($currdir);
101
-		if(!$result){
101
+		if (!$result) {
102 102
 			$this->error("Cannot change working directory back to '$currdir'.");
103 103
 		}
104 104
 	}
Please login to merge, or discard this patch.