1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 05:41:20 +01:00

Changed signature of Serializable::unserialize stub

This commit is contained in:
Aleksandr Zhuravlev 2021-09-06 16:33:53 +12:00
parent a494fc160b
commit f290e0fa3e

View File

@ -426,15 +426,15 @@ class ArrayObject implements IteratorAggregate, ArrayAccess, Serializable, Count
interface Serializable { interface Serializable {
/** /**
* @return string the string representation of the object or null * @return null|string the string representation of the object or null
*/ */
public function serialize(); public function serialize();
/** /**
* @param string $serialized <p> * @param string $data
* @return void * @return void
*/ */
public function unserialize($serialized); public function unserialize($data);
} }
/** /**