diff --git a/src/Backend/BackendPluginBase.php b/src/Backend/BackendPluginBase.php index ca678f9a..bf4b5754 100644 --- a/src/Backend/BackendPluginBase.php +++ b/src/Backend/BackendPluginBase.php @@ -334,7 +334,7 @@ abstract class BackendPluginBase extends ConfigurablePluginBase implements Backe * * Prevents the server entity from being serialized. */ - public function __sleep(): array { + public function __sleep() { if ($this->server) { $this->serverId = $this->server->id(); } @@ -349,7 +349,7 @@ abstract class BackendPluginBase extends ConfigurablePluginBase implements Backe * * Reloads the server entity. */ - public function __wakeup(): void { + public function __wakeup() { parent::__wakeup(); if ($this->serverId) {