From 4ee6523dfa096ea87932bf63fea586ed1f65ea78 Mon Sep 17 00:00:00 2001 From: Jimmy Puckett Date: Thu, 28 May 2015 15:31:26 -0400 Subject: [PATCH] Using the path parameter in the path method. --- config/cache.php | 2 +- config/database.php | 2 +- config/filesystems.php | 2 +- config/session.php | 2 +- config/view.php | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/config/cache.php b/config/cache.php index 297ff5440..106db497d 100644 --- a/config/cache.php +++ b/config/cache.php @@ -44,7 +44,7 @@ return [ 'file' => [ 'driver' => 'file', - 'path' => storage_path().'/framework/cache', + 'path' => storage_path('framework/cache'), ], 'memcached' => [ diff --git a/config/database.php b/config/database.php index ea57ddcaf..32325a28b 100644 --- a/config/database.php +++ b/config/database.php @@ -48,7 +48,7 @@ return [ 'sqlite' => [ 'driver' => 'sqlite', - 'database' => storage_path().'/database.sqlite', + 'database' => storage_path('database.sqlite'), 'prefix' => '', ], diff --git a/config/filesystems.php b/config/filesystems.php index 0001ff54a..cdb96acf1 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -45,7 +45,7 @@ return [ 'local' => [ 'driver' => 'local', - 'root' => storage_path().'/app', + 'root' => storage_path('app'), ], 'ftp' => [ diff --git a/config/session.php b/config/session.php index 2514731db..f1b004214 100644 --- a/config/session.php +++ b/config/session.php @@ -57,7 +57,7 @@ return [ | */ - 'files' => storage_path().'/framework/sessions', + 'files' => storage_path('framework/sessions'), /* |-------------------------------------------------------------------------- diff --git a/config/view.php b/config/view.php index 215dfafc2..9948f06ea 100644 --- a/config/view.php +++ b/config/view.php @@ -28,6 +28,6 @@ return [ | */ - 'compiled' => realpath(storage_path().'/framework/views'), + 'compiled' => realpath(storage_path('framework/views')), ];