mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-12-09 08:23:53 +09:00
Updates to vendors etc
This commit is contained in:
@@ -18,19 +18,15 @@ namespace Symfony\Component\ErrorHandler\Exception;
|
||||
*/
|
||||
class SilencedErrorContext implements \JsonSerializable
|
||||
{
|
||||
public $count = 1;
|
||||
public int $count = 1;
|
||||
|
||||
private int $severity;
|
||||
private string $file;
|
||||
private int $line;
|
||||
private array $trace;
|
||||
|
||||
public function __construct(int $severity, string $file, int $line, array $trace = [], int $count = 1)
|
||||
{
|
||||
$this->severity = $severity;
|
||||
$this->file = $file;
|
||||
$this->line = $line;
|
||||
$this->trace = $trace;
|
||||
public function __construct(
|
||||
private int $severity,
|
||||
private string $file,
|
||||
private int $line,
|
||||
private array $trace = [],
|
||||
int $count = 1,
|
||||
) {
|
||||
$this->count = $count;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user