@@ -36,7 +36,7 @@ |
||
| 36 | 36 | |
| 37 | 37 | public static function fromFile($configFile) |
| 38 | 38 | { |
| 39 | - if(false === $fileContent = @file_get_contents($configFile)) { |
|
| 39 | + if (false === $fileContent = @file_get_contents($configFile)) { |
|
| 40 | 40 | throw new ConfigException(sprintf('unable to read configuration file "%s"', $configFile)); |
| 41 | 41 | } |
| 42 | 42 | |
@@ -53,7 +53,7 @@ |
||
| 53 | 53 | $this->statusCode |
| 54 | 54 | ]; |
| 55 | 55 | |
| 56 | - foreach($this->headers as $key => $value) { |
|
| 56 | + foreach ($this->headers as $key => $value) { |
|
| 57 | 57 | $output[] = sprintf('%s: %s', $key, $value); |
| 58 | 58 | } |
| 59 | 59 | $output[] = $this->body; |