We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d401b99 commit 70d8391Copy full SHA for 70d8391
CHANGELOG.md
@@ -2,6 +2,10 @@
2
3
All notable changes to `laravel-settings` will be documented in this file
4
5
+## 2.1.8 - 2021-06-21
6
+
7
+- fix fake settings not working with `Arrayable`
8
9
## 2.1.7 - 2021-06-08
10
11
- add support for refreshing settings
src/Settings.php
@@ -60,7 +60,7 @@ public static function fake(array $values): self
60
$mergedValues = $settingsMapper
61
->fetchProperties(static::class, $propertiesToLoad)
62
->merge($values)
63
- ->toArray();
+ ->all();
64
65
return app(Container::class)->instance(static::class, new static(
66
$mergedValues
0 commit comments