@@ -44,7 +44,7 @@ return [
'file' => [
'driver' => 'file',
- 'path' => storage_path().'/framework/cache',
+ 'path' => storage_path('framework/cache'),
],
'memcached' => [
@@ -48,7 +48,7 @@ return [
'sqlite' => [
'driver' => 'sqlite',
- 'database' => storage_path().'/database.sqlite',
+ 'database' => storage_path('database.sqlite'),
'prefix' => '',
@@ -45,7 +45,7 @@ return [
'local' => [
'driver' => 'local',
- 'root' => storage_path().'/app',
+ 'root' => storage_path('app'),
'ftp' => [
@@ -57,7 +57,7 @@ return [
|
*/
- 'files' => storage_path().'/framework/sessions',
+ 'files' => storage_path('framework/sessions'),
/*
|--------------------------------------------------------------------------
@@ -28,6 +28,6 @@ return [
- 'compiled' => realpath(storage_path().'/framework/views'),
+ 'compiled' => realpath(storage_path('framework/views')),
];