Passed
Push — master ( 2249b2...49d587 )
by Veaceslav
01:29
created
src/ThrowableContextTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
     /**
19 19
      * @var array
20 20
      */
21
-    private $context = [];
21
+    private $context = [ ];
22 22
 
23 23
     /**
24 24
      * @param string $message
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      * @param int $code
27 27
      * @param Throwable|null $previous
28 28
      */
29
-    public function __construct(string $message = '', array $context = [], int $code = 0, Throwable $previous = null)
29
+    public function __construct(string $message = '', array $context = [ ], int $code = 0, Throwable $previous = null)
30 30
     {
31 31
         parent::__construct($message, $code, $previous);
32 32
 
Please login to merge, or discard this patch.