@@ -35,7 +35,7 @@ |
||
| 35 | 35 | |
| 36 | 36 | public function __invoke(callable $handler) |
| 37 | 37 | { |
| 38 | - return function (RequestInterface $request, array $options) use ($handler) { |
|
| 38 | + return function(RequestInterface $request, array $options) use ($handler) { |
|
| 39 | 39 | $encodedAuth = base64_encode($this->authenticationService->getUsername().':'.$this->authenticationService->getHash()); |
| 40 | 40 | $request = $request->withHeader('Authorization', 'Basic '.$encodedAuth); |
| 41 | 41 | |
@@ -167,7 +167,7 @@ |
||
| 167 | 167 | ) { |
| 168 | 168 | |
| 169 | 169 | if ($fileName === null) { |
| 170 | - $fileName = $reference . '.pdf'; |
|
| 170 | + $fileName = $reference.'.pdf'; |
|
| 171 | 171 | } |
| 172 | 172 | |
| 173 | 173 | $data = [ |
@@ -46,7 +46,7 @@ |
||
| 46 | 46 | * @return ShippingResponse[] |
| 47 | 47 | */ |
| 48 | 48 | public function getShippingMethods( |
| 49 | - $distributor = null, |
|
| 49 | + $distributor = null, |
|
| 50 | 50 | $code = null, |
| 51 | 51 | $type = null |
| 52 | 52 | ) { |