diff options
Diffstat (limited to 'vendor/ramsey/collection/src/ArrayInterface.php')
-rw-r--r-- | vendor/ramsey/collection/src/ArrayInterface.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vendor/ramsey/collection/src/ArrayInterface.php b/vendor/ramsey/collection/src/ArrayInterface.php index bc7f6f424..27af6102b 100644 --- a/vendor/ramsey/collection/src/ArrayInterface.php +++ b/vendor/ramsey/collection/src/ArrayInterface.php @@ -17,6 +17,7 @@ namespace Ramsey\Collection; use ArrayAccess; use Countable; use IteratorAggregate; +use Serializable; /** * `ArrayInterface` provides traversable array functionality to data types. @@ -28,7 +29,8 @@ use IteratorAggregate; interface ArrayInterface extends ArrayAccess, Countable, - IteratorAggregate + IteratorAggregate, + Serializable { /** * Removes all items from this array. |