fix: PHP 7.4 compatibility

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2024-01-09 18:08:53 +01:00
parent 635880a27b
commit 16e5b36d2f
5 changed files with 14 additions and 14 deletions

View File

@@ -19,7 +19,7 @@ class BoardContext implements Context {
private $storedCards = [];
private $activities = null;
private ServerContext $serverContext;
private $serverContext;
/** @BeforeScenario */
public function gatherContexts(BeforeScenarioScope $scope) {

View File

@@ -10,9 +10,9 @@ class ServerContext implements Context {
WebDav::__construct as private __tConstruct;
}
private string $rawBaseUrl;
private string $mappedUserId;
private array $lastInsertIds = [];
private $rawBaseUrl;
private $mappedUserId;
private $lastInsertIds = [];
public function __construct($baseUrl) {
$this->rawBaseUrl = $baseUrl;