Completed
Push — master ( 132a7c...1cf077 )
by Povilas
02:35 queued 01:04
created
src/Printer/Xml.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 
87 87
         $dom->save($this->outputPath);
88 88
 
89
-        $output->writeln('XML generated at '.$this->outputPath);
89
+        $output->writeln('XML generated at ' . $this->outputPath);
90 90
     }
91 91
 
92 92
     /**
@@ -102,9 +102,9 @@  discard block
 block discarded – undo
102 102
         $content = str_replace(array("\r\n", "\r"), "\n", $content);
103 103
         $lines = explode("\n", $content);
104 104
 
105
-        $lineContent = array_slice($lines, $line-1, 1);
105
+        $lineContent = array_slice($lines, $line - 1, 1);
106 106
         $lineContent = reset($lineContent);
107
-        $start = strpos($lineContent, $text.'');
107
+        $start = strpos($lineContent, $text . '');
108 108
 
109 109
         return [
110 110
             'snippet' => $lineContent,
Please login to merge, or discard this patch.