File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed
Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 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
317Features:
Original file line number Diff line number Diff 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 ) {
You can’t perform that action at this time.
0 commit comments