Skip to content

Commit 3af00a4

Browse files
committed
Merge branch '4.4' into 5.0
* 4.4: Fix CS Fix CS
2 parents b2c20de + de41204 commit 3af00a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Store/PdoStore.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ private function getDriver(): string
307307
} else {
308308
switch ($this->driver = $con->getDriver()->getName()) {
309309
case 'mysqli':
310-
throw new NotSupportedException(sprintf('The store "%s" does not support the mysqli driver, use pdo_mysql instead.', \get_class($this)));
310+
throw new NotSupportedException(sprintf('The store "%s" does not support the mysqli driver, use pdo_mysql instead.', static::class));
311311
case 'pdo_mysql':
312312
case 'drizzle_pdo_mysql':
313313
$this->driver = 'mysql';

0 commit comments

Comments
 (0)