Test Setup Failed
Branch develop (220572)
by William
03:20
created
Category
src/Context/Context.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,14 +6,14 @@
 block discarded – undo
6 6
 
7 7
 class Context implements ContextInterface
8 8
 {
9
-    private $contextList = [];
9
+    private $contextList = [ ];
10 10
 
11 11
     /**
12 12
      * {@inheritDoc}
13 13
      */
14 14
     public function add(string $key, string $value): void
15 15
     {
16
-        $this->contextList[$key] = $value;
16
+        $this->contextList[ $key ] = $value;
17 17
     }
18 18
 
19 19
     /**
Please login to merge, or discard this patch.