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:
parent
a494fc160b
commit
f290e0fa3e
@ -426,15 +426,15 @@ class ArrayObject implements IteratorAggregate, ArrayAccess, Serializable, Count
|
||||
|
||||
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();
|
||||
|
||||
/**
|
||||
* @param string $serialized <p>
|
||||
* @param string $data
|
||||
* @return void
|
||||
*/
|
||||
public function unserialize($serialized);
|
||||
public function unserialize($data);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user