From fed243af51629b167f0fa2115688a34606b72ac8 Mon Sep 17 00:00:00 2001 From: Jason Lewis Date: Wed, 24 Oct 2012 22:23:35 +1100 Subject: [PATCH] Calling custom drivers used an undefined variable not ->app defined in the constructor. Signed-off-by: Jason Lewis --- src/Illuminate/Support/Manager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Support/Manager.php b/src/Illuminate/Support/Manager.php index 9ef1f1473..5b337a7a4 100644 --- a/src/Illuminate/Support/Manager.php +++ b/src/Illuminate/Support/Manager.php @@ -90,7 +90,7 @@ protected function createDriver($driver) */ protected function callCustomCreator($driver) { - return $this->customCreators[$driver]($app); + return $this->customCreators[$driver]($this->app); } /**