@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | $this->executeClear($container, $inOut); |
114 | 114 | break; |
115 | 115 | default: |
116 | - $inOut->writeError("Unsupported action `$action`." . PHP_EOL); |
|
116 | + $inOut->writeError("Unsupported action `$action`.".PHP_EOL); |
|
117 | 117 | break; |
118 | 118 | } |
119 | 119 | } |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | throw new ConfigurationException(); |
139 | 139 | } |
140 | 140 | |
141 | - $path = $cacheDir . DIRECTORY_SEPARATOR . $class . '.php'; |
|
141 | + $path = $cacheDir.DIRECTORY_SEPARATOR.$class.'.php'; |
|
142 | 142 | |
143 | 143 | $this->getFileSystem($container)->delete($path); |
144 | 144 | } |
@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | $settingsData = $settingsProvider->serialize(); |
168 | 168 | $content = $this->composeContent($settingsData, $namespace, $class, $method); |
169 | 169 | |
170 | - $path = $cacheDir . DIRECTORY_SEPARATOR . $class . '.php'; |
|
170 | + $path = $cacheDir.DIRECTORY_SEPARATOR.$class.'.php'; |
|
171 | 171 | $this->getFileSystem($container)->write($path, $content); |
172 | 172 | } |
173 | 173 | |
@@ -235,8 +235,8 @@ discard block |
||
235 | 235 | |
236 | 236 | assert( |
237 | 237 | $data !== null, |
238 | - 'It seems the data are not exportable. It is likely to be caused by class instances ' . |
|
239 | - 'that do not implement ` __set_state` magic method required by `var_export`. ' . |
|
238 | + 'It seems the data are not exportable. It is likely to be caused by class instances '. |
|
239 | + 'that do not implement ` __set_state` magic method required by `var_export`. '. |
|
240 | 240 | 'See http://php.net/manual/en/language.oop5.magic.php#object.set-state for more details.' |
241 | 241 | ); |
242 | 242 |