Completed
Pull Request — master (#139)
by kazusuke
34s
created
src/Printer/Xml.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,6 +78,6 @@
 block discarded – undo
78 78
 
79 79
         $dom->save($this->outputPath);
80 80
 
81
-        $output->writeln('XML generated at '.$this->outputPath);
81
+        $output->writeln('XML generated at ' . $this->outputPath);
82 82
     }
83 83
 }
Please login to merge, or discard this patch.
src/Printer/Util.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,9 +21,9 @@
 block discarded – undo
21 21
         $content = str_replace(array("\r\n", "\r"), "\n", $content);
22 22
         $lines = explode("\n", $content);
23 23
 
24
-        $lineContent = array_slice($lines, $line-1, 1);
24
+        $lineContent = array_slice($lines, $line - 1, 1);
25 25
         $lineContent = reset($lineContent);
26
-        $start = strpos($lineContent, $text.'');
26
+        $start = strpos($lineContent, $text . '');
27 27
 
28 28
         return [
29 29
             'snippet' => $lineContent,
Please login to merge, or discard this patch.
src/Printer/CheckStyle.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,6 +52,6 @@
 block discarded – undo
52 52
         $dom->save($this->outputPath);
53 53
 
54 54
         $output->writeln('Total of Magic Numbers ' . $total);
55
-        $output->writeln('checkstyle XML generated at '. $this->outputPath);
55
+        $output->writeln('checkstyle XML generated at ' . $this->outputPath);
56 56
     }
57 57
 }
Please login to merge, or discard this patch.