From: Michael M Slusarz Date: Thu, 20 May 2010 17:01:50 +0000 (-0600) Subject: phpdoc X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=d21123dbab4d2950587138d289567acdec16b174;p=horde.git phpdoc --- diff --git a/framework/Db/lib/Horde/Db/Adapter/Base.php b/framework/Db/lib/Horde/Db/Adapter/Base.php index 2247c3439..bff9c384f 100644 --- a/framework/Db/lib/Horde/Db/Adapter/Base.php +++ b/framework/Db/lib/Horde/Db/Adapter/Base.php @@ -24,58 +24,78 @@ abstract class Horde_Db_Adapter_Base { /** - * Config options + * Config options. * * @var array */ protected $_config = array(); /** + * DB connection. + * * @var mixed */ protected $_connection = null; /** + * Has a transaction been started? + * * @var boolean */ protected $_transactionStarted = false; /** - * @var int + * Row count of last action. + * + * @var integer */ protected $_rowCount = null; /** - * @var int + * Runtime of last query. + * + * @var integer */ protected $_runtime; /** + * Is connection active? + * * @var boolean */ protected $_active = null; /** + * Cache object. + * * @var Horde_Cache_Base */ protected $_cache; /** + * Log object. + * * @var Horde_Log_Logger */ protected $_logger; /** + * Schema object. + * * @var Horde_Db_Adapter_Base_Schema */ protected $_schema = null; /** + * Schema class to use. + * * @var string */ protected $_schemaClass = null; /** + * List of schema methods. + * * @var array */ protected $_schemaMethods = array();