Skip to content

Commit 53dd12e

Browse files
Updated storage path config calls
1 parent 0c3d388 commit 53dd12e

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

config/cache.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
'file' => [
5555
'driver' => 'file',
56-
'path' => storage_path().'/framework/cache',
56+
'path' => storage_path('framework/cache'),
5757
],
5858

5959
'memcached' => [

config/filesystems.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
'local' => [
5656
'driver' => 'local',
57-
'root' => storage_path().'/app',
57+
'root' => storage_path('app'),
5858
],
5959

6060
'public' => [

config/view.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@
2222
|
2323
*/
2424

25-
'paths' => [
26-
realpath(base_path('resources/views')),
27-
],
25+
'paths' => [realpath(base_path('resources/views'))],
2826

2927
/*
3028
|--------------------------------------------------------------------------
@@ -37,6 +35,6 @@
3735
|
3836
*/
3937

40-
'compiled' => realpath(storage_path().'/framework/views'),
38+
'compiled' => realpath(storage_path('framework/views')),
4139

4240
];

0 commit comments

Comments
 (0)