Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilwylegala committed Sep 21, 2024
1 parent 5d16659 commit 5ddce02
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/Cake/Model/Datasource/PDOExceptionWithQueryString.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ class PDOExceptionWithQueryString extends PDOException {

public string $queryString = "";

/**
* Wrapper for PDOException to avoid creating dynamic property.
*/
/**
* Wrapper for PDOException to avoid creating dynamic property.
* @param PDOException $e Source exception.
*/
public function __construct(PDOException $e) {
parent::__construct($e->getMessage(), $e->getCode(), $e->getPrevious());
}
Expand Down

0 comments on commit 5ddce02

Please sign in to comment.