Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsgiehl <stefangiehl@gmail.com>2012-05-24 01:19:25 +0400
committersgiehl <stefangiehl@gmail.com>2012-05-24 01:19:25 +0400
commitf419aca5cae09792f879e5570c51da699d658599 (patch)
treed67c5aa457067a17e031c44309f20292eaaa1d8d /core/Tracker/Db.php
parent145bd36f2bc1183442415ea3f0d2fc42970be207 (diff)
completed a bunch of php doc blocks
git-svn-id: http://dev.piwik.org/svn/trunk@6300 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'core/Tracker/Db.php')
-rw-r--r--core/Tracker/Db.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/core/Tracker/Db.php b/core/Tracker/Db.php
index 0906371cd7..48e2eb1703 100644
--- a/core/Tracker/Db.php
+++ b/core/Tracker/Db.php
@@ -144,10 +144,13 @@ abstract class Piwik_Tracker_Db
* @throws Piwik_Tracker_Db_Exception if an exception occured
*/
abstract public function fetch( $query, $parameters = array() );
-
+
/**
* This function is a proxy to fetch(), used to maintain compatibility with Zend_Db interface
* @see fetch()
+ * @param $query
+ * @param array $parameters
+ * @return
*/
public function fetchRow( $query, $parameters = array() )
{
@@ -157,6 +160,9 @@ abstract class Piwik_Tracker_Db
/**
* This function is a proxy to fetch(), used to maintain compatibility with Zend_Db interface
* @see fetch()
+ * @param string $query
+ * @param array $parameters
+ * @return bool|mixed
*/
public function fetchOne( $query, $parameters = array() )
{
@@ -167,6 +173,9 @@ abstract class Piwik_Tracker_Db
/**
* This function is a proxy to fetch(), used to maintain compatibility with Zend_Db + PDO interface
* @see fetch()
+ * @param string $query
+ * @param array $parameters
+ * @return
*/
public function exec( $query, $parameters = array() )
{