Passed
Branch master (1ccf8a)
by Daniel
10:17
created
Category
example/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
 
56 56
     public function lookup(string $methodName): ?ApiMethodInterface
57 57
     {
58
-        return $this->methods[$methodName] ?? null;
58
+        return $this->methods[ $methodName ] ?? null;
59 59
     }
60 60
 };
61 61
 
Please login to merge, or discard this patch.
src/Exception/InternalException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         string $message,
23 23
         int $code,
24 24
         Throwable $previous = null,
25
-        array $context = []
25
+        array $context = [ ]
26 26
     ) {
27 27
         parent::__construct($message, $code, $previous);
28 28
 
Please login to merge, or discard this patch.
src/Endpoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@
 block discarded – undo
117 117
     private function log(
118 118
         Throwable $e,
119 119
         UuidInterface $uuid,
120
-        array $context = []
120
+        array $context = [ ]
121 121
     ): void {
122 122
         if ($this->logger !== null) {
123 123
             $this->logger->error(
Please login to merge, or discard this patch.