From 9985eee7efc42ef472da07856cdd3fd29c57642c Mon Sep 17 00:00:00 2001 From: Phil Sturgeon Date: Sat, 14 Jun 2014 12:11:41 +0100 Subject: [PATCH] Added changelog for 0.8.3. --- CHANGELOG.md | 14 ++++++++++++++ src/Manager.php | 4 +++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bbd72905..9dbf8fb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## 0.8.3 (2014-06-14) + +Features: + + - Default Includes no longer need to be in Available Includes. [Issue #58] + +[Issue #58]: https://github.com/thephpleague/fractal/issues/58 + +## 0.8.2 (2014-06-09) + +Bug: + + - A `null` value for `Manager::parseIncludes()` could have weird results + ## 0.8.1 (2014-06-05) Features: diff --git a/src/Manager.php b/src/Manager.php index 6f5d0eb8..573f5332 100644 --- a/src/Manager.php +++ b/src/Manager.php @@ -135,7 +135,9 @@ public function parseIncludes($includes) } if (! is_array($includes)) { - throw new \InvalidArgumentException('The parseIncludes() method expects a string or an array. '.gettype($includes).' given'); + throw new \InvalidArgumentException( + 'The parseIncludes() method expects a string or an array. '.gettype($includes).' given' + ); } foreach ($includes as $include) {