Fix __wakeup() must have public visibility

This commit is contained in:
dhonnabhain 2020-11-29 08:58:41 +01:00
parent 4ff9717b0a
commit f308aa5fe9

View File

@ -36,6 +36,6 @@ trait Singleton
*/
protected function init() {}
final private function __wakeup() {}
final private function __clone() {}
public function __wakeup() {}
public function __clone() {}
}