From 63cf5f84f7d677f234a3dd8570a181a5726f64a2 Mon Sep 17 00:00:00 2001 From: crynobone Date: Mon, 19 Jan 2015 10:09:18 +0800 Subject: [PATCH] Fixes typo and remove unused variable. Signed-off-by: crynobone --- src/Config/Console/ConfigCacheCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Config/Console/ConfigCacheCommand.php b/src/Config/Console/ConfigCacheCommand.php index 63c8a89..dbf0555 100644 --- a/src/Config/Console/ConfigCacheCommand.php +++ b/src/Config/Console/ConfigCacheCommand.php @@ -18,7 +18,7 @@ protected function getFreshConfiguration() $files = array_merge( $app['config']->get('compile.config', []), - $this->getConfigurationFiles($app) + $this->getConfigurationFiles() ); foreach ($files as $file) { @@ -55,7 +55,7 @@ protected function parseFreshConfiguration(array $config) } /** - * Set the "real" session driver on the configuratoin array. + * Set the "real" session driver on the configuration array. * * Typically the SessionManager forces the driver to "array" in CLI environment. *