We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e06d13 commit 2dea71eCopy full SHA for 2dea71e
CHANGELOG.md
@@ -2,6 +2,9 @@
2
3
All notable changes to `laravel-collection-macros` will be documented in this file
4
5
+## 2.3.1 - 2017-07-11
6
+- Fixed: `extract` now returns an instance of the current collection type
7
+
8
## 2.3.0 - 2017-07-11
9
- Added: `extract`
10
src/macros.php
@@ -361,6 +361,6 @@
361
return $extracted->push(
362
data_get($this->items, $key)
363
);
364
- }, new self());
+ }, new static());
365
});
366
}
0 commit comments