Passed
Push — develop ( 8cdc48...de2566 )
by
unknown
03:43
created
src/Client/Middleware/AuthenticationMiddleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Services/OrderService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@
 block discarded – undo
167 167
     ) {
168 168
 
169 169
         if ($fileName === null) {
170
-            $fileName = $reference . '.pdf';
170
+            $fileName = $reference.'.pdf';
171 171
         }
172 172
 
173 173
         $data = [
Please login to merge, or discard this patch.