Skip to content

Commit

Permalink
Merge pull request #16 from michaelbunch/master
Browse files Browse the repository at this point in the history
Added missing parent folder for adapters.
  • Loading branch information
jenssegers committed Sep 8, 2014
2 parents ea356e7 + a7a097d commit a0829da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Factory.php
Original file line number Diff line number Diff line change
Expand Up @@ -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))
{
Expand Down

0 comments on commit a0829da

Please sign in to comment.