diff --git a/module/VuFind/src/VuFind/Connection/Oracle.php b/module/VuFind/src/VuFind/Connection/Oracle.php
index 0842bc4586ffc18e59e17a79ead28763261f2304..598d4e9af3f1b7b03f2346c19c02e60fd1ff6684 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 e74441d00bb13a129a7fbcb47f5f70041cec3ccc..ea01d6dcc210c1beb530634675ae41525325e554 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
      */