Skip to content

Commit

Permalink
Added changelog for 0.8.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil Sturgeon committed Jun 14, 2014
1 parent 20093b0 commit 9985eee
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
4 changes: 3 additions & 1 deletion src/Manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 9985eee

Please sign in to comment.