mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2025-08-02 11:36:08 -04:00
cleaned up phpdoc comments, added README on how to install and use it
This commit is contained in:
parent
3a183470a6
commit
24d18c5313
12 changed files with 336 additions and 86 deletions
|
@ -17,31 +17,37 @@
|
|||
*/
|
||||
class zerobin_db extends zerobin_abstract
|
||||
{
|
||||
/*
|
||||
* @access private
|
||||
* @static
|
||||
* @var array to cache select queries
|
||||
/**
|
||||
* cache for select queries
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
private static $_cache = array();
|
||||
|
||||
/*
|
||||
/**
|
||||
* instance of database connection
|
||||
*
|
||||
* @access private
|
||||
* @static
|
||||
* @var PDO instance of database connection
|
||||
* @var PDO
|
||||
*/
|
||||
private static $_db;
|
||||
|
||||
/*
|
||||
/**
|
||||
* table prefix
|
||||
*
|
||||
* @access private
|
||||
* @static
|
||||
* @var string table prefix
|
||||
* @var string
|
||||
*/
|
||||
private static $_prefix = '';
|
||||
|
||||
/*
|
||||
/**
|
||||
* database type
|
||||
*
|
||||
* @access private
|
||||
* @static
|
||||
* @var string database type
|
||||
* @var string
|
||||
*/
|
||||
private static $_type = '';
|
||||
|
||||
|
@ -50,6 +56,7 @@ class zerobin_db extends zerobin_abstract
|
|||
*
|
||||
* @access public
|
||||
* @static
|
||||
* @param array $options
|
||||
* @throws Exception
|
||||
* @return zerobin_db
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue