@@ -27,7 +27,7 @@ |
||
| 27 | 27 | |
| 28 | 28 | $yamlLoader = new Loader\YamlFileLoader( |
| 29 | 29 | $container, |
| 30 | - new FileLocator(__DIR__ . '/../../config') |
|
| 30 | + new FileLocator(__DIR__.'/../../config') |
|
| 31 | 31 | ); |
| 32 | 32 | |
| 33 | 33 | $yamlLoader->load('services.yaml'); |
@@ -25,15 +25,15 @@ |
||
| 25 | 25 | public function __construct(array $config = []) |
| 26 | 26 | { |
| 27 | 27 | if (isset($config['request_header_name'])) { |
| 28 | - $this->requestHeaderName = (string)$config['request_header_name']; |
|
| 28 | + $this->requestHeaderName = (string) $config['request_header_name']; |
|
| 29 | 29 | } |
| 30 | 30 | |
| 31 | 31 | if (isset($config['response_header_name'])) { |
| 32 | - $this->responseHeaderName = (string)$config['response_header_name']; |
|
| 32 | + $this->responseHeaderName = (string) $config['response_header_name']; |
|
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | if (isset($config['pass_through'])) { |
| 36 | - $this->passthrough = (bool)$config['pass_through']; |
|
| 36 | + $this->passthrough = (bool) $config['pass_through']; |
|
| 37 | 37 | } |
| 38 | 38 | } |
| 39 | 39 | |