Skip to content

Commit 9985eee

Browse files
author
Phil Sturgeon
committed
Added changelog for 0.8.3.
1 parent 20093b0 commit 9985eee

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 0.8.3 (2014-06-14)
2+
3+
Features:
4+
5+
- Default Includes no longer need to be in Available Includes. [Issue #58]
6+
7+
[Issue #58]: https://github.com/thephpleague/fractal/issues/58
8+
9+
## 0.8.2 (2014-06-09)
10+
11+
Bug:
12+
13+
- A `null` value for `Manager::parseIncludes()` could have weird results
14+
115
## 0.8.1 (2014-06-05)
216

317
Features:

src/Manager.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,9 @@ public function parseIncludes($includes)
135135
}
136136

137137
if (! is_array($includes)) {
138-
throw new \InvalidArgumentException('The parseIncludes() method expects a string or an array. '.gettype($includes).' given');
138+
throw new \InvalidArgumentException(
139+
'The parseIncludes() method expects a string or an array. '.gettype($includes).' given'
140+
);
139141
}
140142

141143
foreach ($includes as $include) {

0 commit comments

Comments
 (0)