Skip to content

Commit

Permalink
Fixed empty array issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mikola-rollun committed Mar 10, 2023
1 parent 7fb2b59 commit 11d66f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Utils/Extensions/ArrayObject/ArrayObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@

class ArrayObject implements ArrayObjectInterface, \Iterator, \JsonSerializable, \Countable, JsonableInterface, \Stringable
{
protected $items;
/** @var ArrayObjectItemInterface[] $items */
protected $items = [];

protected $unique;

Expand Down

0 comments on commit 11d66f9

Please sign in to comment.