Skip to content

Commit

Permalink
Updated storage path config calls
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed Mar 24, 2016
1 parent 0c3d388 commit 53dd12e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion config/cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

'file' => [
'driver' => 'file',
'path' => storage_path().'/framework/cache',
'path' => storage_path('framework/cache'),
],

'memcached' => [
Expand Down
2 changes: 1 addition & 1 deletion config/filesystems.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

'local' => [
'driver' => 'local',
'root' => storage_path().'/app',
'root' => storage_path('app'),
],

'public' => [
Expand Down
6 changes: 2 additions & 4 deletions config/view.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@
|
*/

'paths' => [
realpath(base_path('resources/views')),
],
'paths' => [realpath(base_path('resources/views'))],

/*
|--------------------------------------------------------------------------
Expand All @@ -37,6 +35,6 @@
|
*/

'compiled' => realpath(storage_path().'/framework/views'),
'compiled' => realpath(storage_path('framework/views')),

];

0 comments on commit 53dd12e

Please sign in to comment.