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_sqlsrv.php | |
parent | c389a85978bc5cf8f0f9d06c58664a35c4746447 (diff) |
CS fixes
Diffstat (limited to 'program/include/rcube_db_sqlsrv.php')
-rw-r--r-- | program/include/rcube_db_sqlsrv.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/program/include/rcube_db_sqlsrv.php b/program/include/rcube_db_sqlsrv.php index 143e02038..feddbe73f 100644 --- a/program/include/rcube_db_sqlsrv.php +++ b/program/include/rcube_db_sqlsrv.php @@ -1,6 +1,6 @@ <?php -/* +/** +-----------------------------------------------------------------------+ | program/include/rcube_db_sqlsrv.php | | | @@ -26,8 +26,8 @@ * * This is a wrapper for the PHP PDO * - * @package Database - * @version 1.0 + * @package Database + * @version 1.0 */ class rcube_db_sqlsrv extends rcube_db { @@ -64,9 +64,9 @@ class rcube_db_sqlsrv 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) @@ -93,9 +93,9 @@ class rcube_db_sqlsrv extends rcube_db /** * Adds TOP (LIMIT,OFFSET) clause to the query * - * @param string $query SQL query - * @param int $limit Number of rows - * @param int $offset Offset + * @param string $query SQL query + * @param int $limit Number of rows + * @param int $offset Offset * * @return string SQL query */ |