Completed
Pull Request — master (#43)
by Raphael
02:37 queued 31s
created
src/ExtensionFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
     {
37 37
         return preg_replace_callback(
38 38
             '/(?:^|_)([a-z])/',
39
-            function ($match) {
39
+            function($match) {
40 40
                 return strtoupper($match[1]);
41 41
             },
42 42
             $string
Please login to merge, or discard this patch.
src/Printer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
         $output->writeln(PHP_EOL . $separator . PHP_EOL);
38 38
 
39 39
         $total = 0;
40
-        foreach($this->fileReports as $fileReport) {
40
+        foreach ($this->fileReports as $fileReport) {
41 41
             $entries = $fileReport->getEntries();
42 42
             $total += count($entries);
43 43
             foreach ($entries as $entry) {
Please login to merge, or discard this patch.