diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-06-27 23:34:36 +0200 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-06-27 23:34:36 +0200 |
commit | 10951f9bd542a3e0d162194c8737cfb0ef9048b0 (patch) | |
tree | 4f341dcfa4351de91f04cf3e851dfafa17775012 /lib/db.php | |
parent | 77dc3964f8c89826e7706ea8cc88da5efdaf8212 (diff) | |
download | nextcloud-server-10951f9bd542a3e0d162194c8737cfb0ef9048b0.tar.gz nextcloud-server-10951f9bd542a3e0d162194c8737cfb0ef9048b0.zip |
adding PHPDoc
Diffstat (limited to 'lib/db.php')
-rw-r--r-- | lib/db.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/db.php b/lib/db.php index ac9ed77898f..9e5bd2d99b3 100644 --- a/lib/db.php +++ b/lib/db.php @@ -49,10 +49,10 @@ class OC_DB { /** * @var \Doctrine\DBAL\Connection */ - static private $connection; //the prefered connection to use, only Doctrine + static private $connection; //the preferred connection to use, only Doctrine static private $backend=null; /** - * @var Doctrine + * @var \Doctrine\DBAL\Connection */ static private $DOCTRINE=null; @@ -652,7 +652,7 @@ class OC_DB { /** * check if a result is an error and throws an exception, works with \Doctrine\DBAL\DBALException * @param mixed $result - * @param string message + * @param string $message * @return void * @throws DatabaseException */ |