Skip to content

Commit e23084a

Browse files
committed
Fix Creation of dynamic property deprecation warning for PHP 8.2+.
1 parent dbed72e commit e23084a

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/Database.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class Database
1212
*
1313
* @var string
1414
*/
15-
public const VERSION = '9.7.1';
15+
public const VERSION = '9.7.2';
1616

1717
/**
1818
* Unsupported field message.

src/WebService.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ class WebService
2727
* @var int
2828
*/
2929
public const EXCEPTION_WEB_SERVICE_ERROR = 10003;
30+
31+
private $apiKey;
32+
private $package;
33+
private $useSsl;
3034

3135
/**
3236
* Constructor.

0 commit comments

Comments
 (0)