Improve performance of class existence checks

This commit is contained in:
Kijin Sung 2016-04-18 21:05:57 +09:00
parent ba9adb2f6e
commit 6d324633a5
3 changed files with 7 additions and 7 deletions

View file

@ -72,7 +72,7 @@ class SQLite implements \Rhymix\Framework\Drivers\CacheInterface
*/
public function isSupported()
{
return class_exists('\\SQLite3');
return class_exists('\\SQLite3', false);
}
/**