Completed
Push — master ( 855e90...6dafd3 )
by Yitzchok
02:34 queued 01:14
created
src/EmojiPrinter.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 
11 11
 final class EmojiPrinter extends ResultPrinter
12 12
 {
13
-    const CONFIG = __DIR__ . '/../config/';
13
+    const CONFIG = __DIR__.'/../config/';
14 14
     const EMOJIFILE = '.emojifile';
15 15
     const EMOJISET = 'phpumoji';
16 16
     const SPACER = ' ';
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 
36 36
     protected function writeProgress($progress)
37 37
     {
38
-        return parent::writeProgress($this->emojify($progress) . self::SPACER);
38
+        return parent::writeProgress($this->emojify($progress).self::SPACER);
39 39
     }
40 40
 
41 41
     protected function writeProgressWithColor($color, $progress)
@@ -53,8 +53,8 @@  discard block
 block discarded – undo
53 53
     private function emojifile(string $projectroot): array
54 54
     {
55 55
         return array_merge(
56
-            $this->parse(self::CONFIG . self::EMOJIFILE),
57
-            $this->parse($projectroot . self::EMOJIFILE)
56
+            $this->parse(self::CONFIG.self::EMOJIFILE),
57
+            $this->parse($projectroot.self::EMOJIFILE)
58 58
         );
59 59
     }
60 60
 
Please login to merge, or discard this patch.