Skip to content

Commit

Permalink
Merge pull request #20 from graham73may/php8-compatibility
Browse files Browse the repository at this point in the history
PHP 8 compatibility / fixing PHP 8 warnings
  • Loading branch information
gdarko authored Sep 19, 2023
2 parents 69a2531 + ca66502 commit 3245a07
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions includes/class-bp-singleton.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ final private function __construct() {
protected function init() {
}

final private function __wakeup() {
public function __wakeup() {
}

final private function __clone() {
private function __clone() {
}
}
}

0 comments on commit 3245a07

Please sign in to comment.