diff --git a/CHANGELOG.md b/CHANGELOG.md index 47d76de..763b10c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## 0.9.1 - 2016-08-09 + +### Removed + +- Removed `Collection` `shuffle` method. + ## 0.9.0 - 2016-01-26 ### Changed diff --git a/src/Collection.php b/src/Collection.php index a983932..79d1833 100644 --- a/src/Collection.php +++ b/src/Collection.php @@ -62,18 +62,6 @@ public function gatherFirsts() }); } - /** - * Shuffle the Collection. - * - * @return self - */ - public function shuffle() - { - shuffle($this->items); - - return $this; - } - /** * Paginate a Collection. *