implement drivers as Singleton

This commit is contained in:
coderkun 2013-09-22 21:44:54 +02:00
commit 961c869c30
5 changed files with 213 additions and 239 deletions

View file

@ -63,7 +63,7 @@
// Construct and return Driver
return new $className($config);
return $className::singleton($config);
}