Skip to content

Commit 1ba8e90

Browse files
committed
Use storage_path() helper in configuration files.
1 parent 66c9dd4 commit 1ba8e90

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/config/app.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
|
114114
*/
115115

116-
'manifest' => __DIR__.'/../storage/meta',
116+
'manifest' => storage_path().'/meta',
117117

118118
/*
119119
|--------------------------------------------------------------------------

app/config/cache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
|
2929
*/
3030

31-
'path' => __DIR__.'/../storage/cache',
31+
'path' => storage_path().'/cache',
3232

3333
/*
3434
|--------------------------------------------------------------------------

app/config/session.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
|
4343
*/
4444

45-
'files' => __DIR__.'/../storage/sessions',
45+
'files' => storage_path().'/sessions',
4646

4747
/*
4848
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)