Issue #51 check if PDO is supported

This commit is contained in:
djmaze 2021-03-02 14:33:11 +01:00
parent 25958cd87a
commit b8fd3df2e6

View file

@ -32,7 +32,7 @@ class ChangePasswordDriverPDO
public static function isSupported() : bool
{
return true;
return \class_exists('PDO', false);
}
public static function configMapping() : array