Skip to content

Commit a1f3e27

Browse files
author
albert
committed
fixed code
1 parent 550ac2e commit a1f3e27

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/PhpParser.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ public function encode($data): string
4242
*/
4343
public function decode(string $data)
4444
{
45-
return $this->igbinaryAvailable ? \igbinary_unserialize($data) : \unserialize($data,
46-
['allowed_classes' => false]);
45+
return $this->igbinaryAvailable ? \igbinary_unserialize($data) : \unserialize(
46+
$data,
47+
['allowed_classes' => false]
48+
);
4749
}
4850
}

0 commit comments

Comments
 (0)