Skip to content

Commit 8dcfd82

Browse files
committed
Fix php 8.5 deprecation (null array offset)
ERROR: Using null as an array offset is deprecated, use an empty string instead in src/RunningTool.php:43
1 parent 33386db commit 8dcfd82

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/RunningTool.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ class RunningTool
1313
private $outputMode;
1414

1515
private $xmlFiles;
16-
private $errorsXPath;
17-
public $errorsType;
16+
private $errorsXPath = '';
17+
public $errorsType = '';
1818
private $allowedErrorsCount;
1919

2020
public $htmlReport;

0 commit comments

Comments
 (0)