Passed
Push — master ( 54413c...f44e35 )
by Evgeniy
53s queued 11s
created
src/Compiler.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -68,13 +68,13 @@  discard block
 block discarded – undo
68 68
 
69 69
     private function getHeader(): string
70 70
     {
71
-        return $this->getAliasHeader() . $this->getFactoryHeader();
71
+        return $this->getAliasHeader().$this->getFactoryHeader();
72 72
     }
73 73
 
74 74
     private function getAliasHeader(): string
75 75
     {
76 76
         if (count($this->alias) > 0) {
77
-            return 'use \Cekta\DI\Loader\Alias;' . PHP_EOL;
77
+            return 'use \Cekta\DI\Loader\Alias;'.PHP_EOL;
78 78
         }
79 79
         return '';
80 80
     }
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
     private function getFactoryHeader(): string
83 83
     {
84 84
         if (count($this->classes) > 0) {
85
-            return 'use \Cekta\DI\Loader\Factory;' . PHP_EOL;
85
+            return 'use \Cekta\DI\Loader\Factory;'.PHP_EOL;
86 86
         }
87 87
         return '';
88 88
     }
Please login to merge, or discard this patch.