Compare commits

...

2 Commits

Author SHA1 Message Date
dependabot[bot] 022a385212
Merge 266e720435 into 0d094c9830 2024-02-22 22:58:18 +02:00
Alexander Minkin 0d094c9830
fix: make __wakeup methods public
PHP 8+ requires that __wakeup must be public
2023-12-11 13:38:00 +03:00
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ class DatabaseConnection
}
private function __clone() {}
private function __wakeup() {}
public function __wakeup() {}
protected function getQueryCallback(): array
{

View File

@ -7,7 +7,7 @@ trait TSimpleSingleton
private function __construct() {}
private function __clone() {}
private function __wakeup() {}
public function __wakeup() {}
static function i()
{