From 5c380a5740deebc6bae4e75c2dce6cd80017f9ba Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Mon, 30 Jun 2014 13:02:28 -0400
Subject: [PATCH] PhpDoc fixes.

---
 .../VuFind/src/VuFind/Connection/Oracle.php   | 30 +++++++++++++++++--
 .../Backend/EDS/SearchRequestModel.php        |  2 +-
 2 files changed, 29 insertions(+), 3 deletions(-)

diff --git a/module/VuFind/src/VuFind/Connection/Oracle.php b/module/VuFind/src/VuFind/Connection/Oracle.php
index 0842bc4586f..598d4e9af3f 100644
--- a/module/VuFind/src/VuFind/Connection/Oracle.php
+++ b/module/VuFind/src/VuFind/Connection/Oracle.php
@@ -38,13 +38,39 @@ namespace VuFind\Connection;
  */
 class Oracle
 {
-    // Database Handle
+    /**
+     * Database Handle
+     *
+     * @var resource
+     */
     protected $dbHandle;
 
-    // Error information
+    /**
+     * Error information - message
+     *
+     * @var string
+     */
     protected $lastError;
+
+    /**
+     * Error information - type
+     *
+     * @var string
+     */
     protected $lastErrorType;
+
+    /**
+     * Error information - bind params
+     *
+     * @var array
+     */
     protected $lastErrorFields;
+
+    /**
+     * Error information - SQL attempted
+     *
+     * @var string
+     */
     protected $lastSql;
 
     /**
diff --git a/module/VuFindSearch/src/VuFindSearch/Backend/EDS/SearchRequestModel.php b/module/VuFindSearch/src/VuFindSearch/Backend/EDS/SearchRequestModel.php
index e74441d00bb..ea01d6dcc21 100644
--- a/module/VuFindSearch/src/VuFindSearch/Backend/EDS/SearchRequestModel.php
+++ b/module/VuFindSearch/src/VuFindSearch/Backend/EDS/SearchRequestModel.php
@@ -339,7 +339,7 @@ class SearchRequestModel
     /**
      * Determines whether or not a querystring parameter is indexed
      *
-     * @param unknown $value parameter key to check
+     * @param string $value parameter key to check
      *
      * @return bool
      */
-- 
GitLab