We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 266af2b commit 4ec6eb3Copy full SHA for 4ec6eb3
src/Facebook/FacebookApp.php
@@ -94,9 +94,9 @@ public function __serialize(): array
94
* Unserializes a string as a FacebookApp entity.
95
* @throws FacebookSDKException
96
*/
97
- public function unserialize(string $serialized): void
+ public function unserialize(string $data): void
98
{
99
- list($id, $secret) = explode('|', $serialized);
+ list($id, $secret) = explode('|', $data);
100
101
$this->__construct($id, $secret);
102
}
0 commit comments