Browse Source

Merge pull request #3395 from spinen/feature/usePathParameter

Using the path parameter in the path method.
Taylor Otwell 9 years ago
parent
commit
6575cb74f8
5 changed files with 5 additions and 5 deletions
  1. 1 1
      config/cache.php
  2. 1 1
      config/database.php
  3. 1 1
      config/filesystems.php
  4. 1 1
      config/session.php
  5. 1 1
      config/view.php

+ 1 - 1
config/cache.php

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

+ 1 - 1
config/database.php

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

+ 1 - 1
config/filesystems.php

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

+ 1 - 1
config/session.php

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

+ 1 - 1
config/view.php

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