Use storage_path() helper in configuration files.

This commit is contained in:
Taylor Otwell 2013-03-29 07:52:46 -05:00
parent 66c9dd46e5
commit 1ba8e90b70
3 changed files with 3 additions and 3 deletions

View File

@ -113,7 +113,7 @@
|
*/
'manifest' => __DIR__.'/../storage/meta',
'manifest' => storage_path().'/meta',
/*
|--------------------------------------------------------------------------

View File

@ -28,7 +28,7 @@
|
*/
'path' => __DIR__.'/../storage/cache',
'path' => storage_path().'/cache',
/*
|--------------------------------------------------------------------------

View File

@ -42,7 +42,7 @@
|
*/
'files' => __DIR__.'/../storage/sessions',
'files' => storage_path().'/sessions',
/*
|--------------------------------------------------------------------------