diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-07-08 10:58:11 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-07-08 10:58:11 +0200 |
commit | 3d231c88fa299787fe52e00773d03a4efa51590d (patch) | |
tree | 8f3c63c3accb6f75340d209f60f9a45ee0d7edee /program/include/rcube_db_pgsql.php | |
parent | c389a85978bc5cf8f0f9d06c58664a35c4746447 (diff) |
CS fixes
Diffstat (limited to 'program/include/rcube_db_pgsql.php')
-rw-r--r-- | program/include/rcube_db_pgsql.php | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/program/include/rcube_db_pgsql.php b/program/include/rcube_db_pgsql.php index d357d88ce..782fc0ebb 100644 --- a/program/include/rcube_db_pgsql.php +++ b/program/include/rcube_db_pgsql.php @@ -35,9 +35,9 @@ class rcube_db_pgsql extends rcube_db * Get last inserted record ID * For Postgres databases, a table name is required * - * @param string $table Table name (to find the incremented sequence) + * @param string $table Table name (to find the incremented sequence) * - * @return mixed ID or false on failure + * @return mixed ID or false on failure */ public function insert_id($table = '') { @@ -60,9 +60,9 @@ class rcube_db_pgsql extends rcube_db * This method is deprecated and should not be used anymore due to limitations * of timestamp functions in Mysql (year 2038 problem) * - * @param string $field Field name + * @param string $field Field name * - * @return string SQL statement to use in query + * @return string SQL statement to use in query * @deprecated */ public function unixtimestamp($field) @@ -73,10 +73,10 @@ class rcube_db_pgsql extends rcube_db /** * Return SQL statement for case insensitive LIKE * - * @param string $column Field name - * @param string $value Search value + * @param string $column Field name + * @param string $value Search value * - * @return string SQL statement to use in query + * @return string SQL statement to use in query */ public function ilike($column, $value) { @@ -86,8 +86,8 @@ class rcube_db_pgsql extends rcube_db /** * Get database runtime variables * - * @param string $varname Variable name - * @param mixed $default Default value if variable is not set + * @param string $varname Variable name + * @param mixed $default Default value if variable is not set * * @return mixed Variable value or default */ |