Skip to content

Commit 52b0065

Browse files
committed
do not call get_class() without a parameter
This has been deprecated in PHP 8.3
1 parent 0abcb03 commit 52b0065

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inc/Debug/PropertyDeprecationHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ protected function deprecatePublicProperty(
5353
$property,
5454
$class = null
5555
) {
56-
$this->deprecatedPublicProperties[$property] = $class ?: get_class();
56+
$this->deprecatedPublicProperties[$property] = $class ?: get_class($this);
5757
}
5858

5959
public function __get($name)

0 commit comments

Comments
 (0)