Browse Source

Use storage_path() helper in configuration files.

Taylor Otwell 11 years ago
parent
commit
1ba8e90b70
3 changed files with 3 additions and 3 deletions
  1. 1 1
      app/config/app.php
  2. 1 1
      app/config/cache.php
  3. 1 1
      app/config/session.php

+ 1 - 1
app/config/app.php

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

+ 1 - 1
app/config/cache.php

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

+ 1 - 1
app/config/session.php

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