Skip to content

Commit

Permalink
Replace qualifier with import
Browse files Browse the repository at this point in the history
  • Loading branch information
campbell-m committed Jul 3, 2024
1 parent cfa0f7b commit f4dcd1b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions web/lib/MRBS/DBException.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@
declare(strict_types=1);
namespace MRBS;

class DBException extends \PDOException
use PDOException;

class DBException extends PDOException
{

public function __construct($message, $code=0, \PDOException $previous=null, $sql=null, $params=null)
public function __construct($message, $code=0, PDOException $previous=null, $sql=null, $params=null)
{
if (isset($sql))
{
Expand Down

0 comments on commit f4dcd1b

Please sign in to comment.