We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
cache.default
array
1 parent 6df48c0 commit 51a7373Copy full SHA for 51a7373
bin/sync
@@ -51,3 +51,8 @@ transform([
51
Queue::createPayloadUsing(null);
52
}'.PHP_EOL, 2),
53
], fn ($changes) => $files->replaceInFile(array_keys($changes), array_values($changes), "{$workingPath}/src/Illuminate/Foundation/Testing/Concerns/InteractsWithTestCaseLifecycle.php"));
54
+
55
+// Configure `config/cache.php` file
56
+transform([
57
+ line("'default' => env('CACHE_STORE', 'database'),", 1) => line("'default' => env('CACHE_STORE', 'array'),", 1),
58
+], fn ($changes) => $files->replaceInFile(array_keys($changes), array_values($changes), "{$workingPath}/config/cache.php"));
0 commit comments