Skip to content

Commit 6069114

Browse files
committed
Apply fixes from StyleCI
1 parent c1e1ef1 commit 6069114

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Exception/ErrorException.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ class ErrorException extends \ErrorException implements FriendlyExceptionInterfa
4040
];
4141

4242
/** @psalm-param DebugBacktraceType $backtrace */
43-
public function __construct(string $message = '', int $code = 0, int $severity = 1, string $filename = __FILE__, int $line = __LINE__, Exception $previous = null, private readonly array $backtrace = []) {
43+
public function __construct(string $message = '', int $code = 0, int $severity = 1, string $filename = __FILE__, int $line = __LINE__, Exception $previous = null, private readonly array $backtrace = [])
44+
{
4445
parent::__construct($message, $code, $severity, $filename, $line, $previous);
4546
$this->addXDebugTraceToFatalIfAvailable();
4647
}

0 commit comments

Comments
 (0)