Skip to content

Commit edcbb09

Browse files
authored
Application implements the Serializable interface, which is deprecated
Fixed for PHP 8.1 For more information: https://php.watch/versions/8.1/serializable-deprecated
1 parent c44279e commit edcbb09

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Application.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,4 +107,7 @@ public function unserialize($serialized)
107107

108108
$this->__construct($id, $secret);
109109
}
110+
111+
public function __serialize() {}
112+
public function __unserialize(array $data) {}
110113
}

0 commit comments

Comments
 (0)