@@ -20,7 +20,7 @@ |
||
| 20 | 20 | protected function initFileForUpload() |
| 21 | 21 | { |
| 22 | 22 | if (!$this->isFileReadable($this->file)) { |
| 23 | - throw new EntityException('File "' . $this->file . '" is not readable or does not exist!'); |
|
| 23 | + throw new EntityException('File "'.$this->file.'" is not readable or does not exist!'); |
|
| 24 | 24 | } |
| 25 | 25 | return fopen($this->file, 'r'); |
| 26 | 26 | } |
@@ -45,7 +45,7 @@ |
||
| 45 | 45 | $replace = []; |
| 46 | 46 | |
| 47 | 47 | foreach ($tokens as $token) { |
| 48 | - $envKey = static::ENV_PREFIX . strtoupper(substr($token, 1, strlen($token) - 2)); |
|
| 48 | + $envKey = static::ENV_PREFIX.strtoupper(substr($token, 1, strlen($token) - 2)); |
|
| 49 | 49 | $envValue = getenv($envKey); |
| 50 | 50 | |
| 51 | 51 | if ($envValue) { |