From f035494b3d8be2d62b69a48083ca8da787d05b26 Mon Sep 17 00:00:00 2001 From: Oliver Vogel Date: Fri, 5 Nov 2021 19:35:26 +0100 Subject: [PATCH] Bugfix --- src/Collection.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Collection.php b/src/Collection.php index 024718c5..99699726 100644 --- a/src/Collection.php +++ b/src/Collection.php @@ -20,7 +20,7 @@ class Collection implements CollectionInterface, IteratorAggregate, Countable */ public function __construct(array $items = []) { - $this->items = $items + $this->items = $items; } /**