We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d695b43 commit a786448Copy full SHA for a786448
src/Symfony/Component/Cache/Traits/PdoTrait.php
@@ -395,6 +395,7 @@ private function getConnection()
395
} else {
396
switch ($this->driver = $this->conn->getDriver()->getName()) {
397
case 'mysqli':
398
+ throw new \LogicException(sprintf('The adapter "%s" does not support the mysqli driver, use pdo_mysql instead.', \get_class($this)));
399
case 'pdo_mysql':
400
case 'drizzle_pdo_mysql':
401
$this->driver = 'mysql';
0 commit comments