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 b535e37 commit 09e4a2eCopy full SHA for 09e4a2e
src/Client.php
@@ -85,6 +85,16 @@ public function getBrowserManager(): BrowserManagerInterface
85
return $this->browserManager;
86
}
87
88
+ public function __sleep()
89
+ {
90
+ throw new \BadMethodCallException('Cannot serialize '.__CLASS__);
91
+ }
92
+
93
+ public function __wakeup()
94
95
+ throw new \BadMethodCallException('Cannot unserialize '.__CLASS__);
96
97
98
public function __destruct()
99
{
100
$this->quit();
0 commit comments