@@ -68,13 +68,13 @@ discard block |
||
| 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 |
||
| 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 | } |