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.
2 parents b2c20de + de41204 commit 3af00a4Copy full SHA for 3af00a4
Store/PdoStore.php
@@ -307,7 +307,7 @@ private function getDriver(): string
307
} else {
308
switch ($this->driver = $con->getDriver()->getName()) {
309
case 'mysqli':
310
- throw new NotSupportedException(sprintf('The store "%s" does not support the mysqli driver, use pdo_mysql instead.', \get_class($this)));
+ throw new NotSupportedException(sprintf('The store "%s" does not support the mysqli driver, use pdo_mysql instead.', static::class));
311
case 'pdo_mysql':
312
case 'drizzle_pdo_mysql':
313
$this->driver = 'mysql';
0 commit comments