Merge pull request #3395 from spinen/feature/usePathParameter

Using the path parameter in the path method.
This commit is contained in:
Taylor Otwell 2015-05-28 14:45:11 -05:00
commit 6575cb74f8
5 changed files with 5 additions and 5 deletions

View File

@ -44,7 +44,7 @@
'file' => [
'driver' => 'file',
'path' => storage_path().'/framework/cache',
'path' => storage_path('framework/cache'),
],
'memcached' => [

View File

@ -48,7 +48,7 @@
'sqlite' => [
'driver' => 'sqlite',
'database' => storage_path().'/database.sqlite',
'database' => storage_path('database.sqlite'),
'prefix' => '',
],

View File

@ -45,7 +45,7 @@
'local' => [
'driver' => 'local',
'root' => storage_path().'/app',
'root' => storage_path('app'),
],
'ftp' => [

View File

@ -57,7 +57,7 @@
|
*/
'files' => storage_path().'/framework/sessions',
'files' => storage_path('framework/sessions'),
/*
|--------------------------------------------------------------------------

View File

@ -28,6 +28,6 @@
|
*/
'compiled' => realpath(storage_path().'/framework/views'),
'compiled' => realpath(storage_path('framework/views')),
];