Commit 6575cb74 authored by Taylor Otwell's avatar Taylor Otwell

Merge pull request #3395 from spinen/feature/usePathParameter

Using the path parameter in the path method.
parents c3128ad9 4ee6523d
...@@ -44,7 +44,7 @@ return [ ...@@ -44,7 +44,7 @@ return [
'file' => [ 'file' => [
'driver' => 'file', 'driver' => 'file',
'path' => storage_path().'/framework/cache', 'path' => storage_path('framework/cache'),
], ],
'memcached' => [ 'memcached' => [
......
...@@ -48,7 +48,7 @@ return [ ...@@ -48,7 +48,7 @@ return [
'sqlite' => [ 'sqlite' => [
'driver' => 'sqlite', 'driver' => 'sqlite',
'database' => storage_path().'/database.sqlite', 'database' => storage_path('database.sqlite'),
'prefix' => '', 'prefix' => '',
], ],
......
...@@ -45,7 +45,7 @@ return [ ...@@ -45,7 +45,7 @@ return [
'local' => [ 'local' => [
'driver' => 'local', 'driver' => 'local',
'root' => storage_path().'/app', 'root' => storage_path('app'),
], ],
'ftp' => [ 'ftp' => [
......
...@@ -57,7 +57,7 @@ return [ ...@@ -57,7 +57,7 @@ return [
| |
*/ */
'files' => storage_path().'/framework/sessions', 'files' => storage_path('framework/sessions'),
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
......
...@@ -28,6 +28,6 @@ return [ ...@@ -28,6 +28,6 @@ return [
| |
*/ */
'compiled' => realpath(storage_path().'/framework/views'), 'compiled' => realpath(storage_path('framework/views')),
]; ];
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment