From a7a097d4e419cfe558151f23e59894387f0a8930 Mon Sep 17 00:00:00 2001 From: Michael Bunch Date: Tue, 2 Sep 2014 14:56:46 -0400 Subject: [PATCH] Added missing parent folder for adapter. --- src/Factory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Factory.php b/src/Factory.php index 03f8acc..6e0e0e2 100644 --- a/src/Factory.php +++ b/src/Factory.php @@ -69,7 +69,7 @@ public static function setDefaultAdapter($adapter) */ protected static function createAdapter($adapter) { - $class = '\\Proxy\\Adapter\\' . ucfirst($adapter) . 'Adapter'; + $class = '\\Proxy\\Adapter\\' . ucfirst($adapter) . '\\' . ucfirst($adapter) . 'Adapter'; if (class_exists($class)) {