Skip to content
Snippets Groups Projects
Commit c8d32011 authored by Carsten Karbach's avatar Carsten Karbach
Browse files

Fix documentation errors

parent ae5a643d
Branches
Tags
No related merge requests found
...@@ -29,7 +29,7 @@ class DBAccessService{ ...@@ -29,7 +29,7 @@ class DBAccessService{
/** /**
* Connection object for PDO access * Connection object for PDO access
* @var unknown * @var \PDO
*/ */
private $conn; private $conn;
...@@ -88,7 +88,7 @@ class DBAccessService{ ...@@ -88,7 +88,7 @@ class DBAccessService{
* @param string $sqlStatement the SQL statement to run * @param string $sqlStatement the SQL statement to run
* @param array $input_parameters bound parameters in the sqlStatement * @param array $input_parameters bound parameters in the sqlStatement
* *
* @throws Exception if statement could not be executed * @throws \Exception if statement could not be executed
*/ */
public function sql_select($sqlStatement, $input_parameters = null){ public function sql_select($sqlStatement, $input_parameters = null){
$sth = $this->conn->prepare($sqlStatement); $sth = $this->conn->prepare($sqlStatement);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment