@@ -18,7 +18,7 @@ discard block |
||
| 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 |
||
| 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 | |