Skip to content

Commit

Permalink
Merge branch '4.4' into 5.0
Browse files Browse the repository at this point in the history
* 4.4:
  Fix CS
  Fix CS
  • Loading branch information
fabpot committed Feb 4, 2020
2 parents b2c20de + de41204 commit 3af00a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Store/PdoStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ private function getDriver(): string
} else {
switch ($this->driver = $con->getDriver()->getName()) {
case 'mysqli':
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));
case 'pdo_mysql':
case 'drizzle_pdo_mysql':
$this->driver = 'mysql';
Expand Down

0 comments on commit 3af00a4

Please sign in to comment.