Completed
Push — master ( 88ec99...d4ff35 )
by personal
04:02 queued 17s
created
src/Hal/Application/Formater/Details/Cli.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     /**
65 65
      * @inheritdoc
66 66
      */
67
-    public function terminate(ResultCollection $collection, ResultCollection $groupedResults){
67
+    public function terminate(ResultCollection $collection, ResultCollection $groupedResults) {
68 68
 
69 69
         $output = new BufferedOutput(OutputInterface::VERBOSITY_NORMAL, true);
70 70
 //        $output->write(str_pad("\x0D", 80, "\x20"));
@@ -130,8 +130,8 @@  discard block
 block discarded – undo
130 130
                     ) : array())
131 131
             ));
132 132
 
133
-        foreach($groupedResults as $key => $result) {
134
-            if($result->getDepth()>1){
133
+        foreach ($groupedResults as $key => $result) {
134
+            if ($result->getDepth() > 1) {
135 135
                 $table->addRow(new TableSeparator());
136 136
             }
137 137
 
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
     private function getStyle($key, $value) {
194 194
         $score = $this->validator->validate($key, $value);
195 195
 
196
-        switch($score) {
196
+        switch ($score) {
197 197
             case Validator::GOOD:
198 198
                 return 'fg=green';
199 199
             case Validator::WARNING:
Please login to merge, or discard this patch.