Passed
Pull Request — master (#2)
by Fabrice
10:14 queued 08:07
created
src/ContextException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      * @param null|\Throwable $previous
25 25
      * @param array           $context
26 26
      */
27
-    public function __construct(string $message = '', int $code = 0, ? \Throwable $previous = null, array $context = [])
27
+    public function __construct(string $message = '', int $code = 0, ? \Throwable $previous = null, array $context = [ ])
28 28
     {
29 29
         $this->context = $context;
30 30
 
Please login to merge, or discard this patch.
src/ContextExceptionTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
      *
20 20
      * @var array
21 21
      */
22
-    protected $context = [];
22
+    protected $context = [ ];
23 23
 
24 24
     /**
25 25
      * Get current exception context, useful for logging
Please login to merge, or discard this patch.