We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 550ac2e commit a1f3e27Copy full SHA for a1f3e27
src/PhpParser.php
@@ -42,7 +42,9 @@ public function encode($data): string
42
*/
43
public function decode(string $data)
44
{
45
- return $this->igbinaryAvailable ? \igbinary_unserialize($data) : \unserialize($data,
46
- ['allowed_classes' => false]);
+ return $this->igbinaryAvailable ? \igbinary_unserialize($data) : \unserialize(
+ $data,
47
+ ['allowed_classes' => false]
48
+ );
49
}
50
0 commit comments