From c8d32011632c20ade764be97c07fd330f0dfd28d Mon Sep 17 00:00:00 2001
From: Carsten Karbach <c.karbach@fz-juelich.de>
Date: Thu, 26 Mar 2020 08:38:15 +0100
Subject: [PATCH] Fix documentation errors

---
 lib/DBAccessService.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/DBAccessService.php b/lib/DBAccessService.php
index cb0fe65..8d57a9a 100644
--- a/lib/DBAccessService.php
+++ b/lib/DBAccessService.php
@@ -29,7 +29,7 @@ class DBAccessService{
 	
 	/**
 	 * Connection object for PDO access
-	 * @var unknown
+	 * @var \PDO
 	 */
 	private $conn;
 	
@@ -88,7 +88,7 @@ class DBAccessService{
 	 * @param string $sqlStatement the SQL statement to run
 	 * @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){
 		$sth = $this->conn->prepare($sqlStatement);
-- 
GitLab