Skip to content
Snippets Groups Projects
Commit 5c380a57 authored by Demian Katz's avatar Demian Katz
Browse files

PhpDoc fixes.

parent b6f64cc2
No related merge requests found
......@@ -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;
/**
......
......@@ -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
*/
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment