From 3a0629e8f40434ed37e0699db8d2aea600073746 Mon Sep 17 00:00:00 2001 From: sparkyx Date: Tue, 31 May 2022 10:43:56 +0200 Subject: [PATCH] code documentation --- include/lib/table_data_sql.class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/lib/table_data_sql.class.php b/include/lib/table_data_sql.class.php index 763f8488c..a444f24dd 100644 --- a/include/lib/table_data_sql.class.php +++ b/include/lib/table_data_sql.class.php @@ -215,7 +215,7 @@ abstract class Table_Data_SQL extends Data_SQL /** - * return the number of count in the table corresponding to the where condition + * @brief return the number of count in the table corresponding to the where condition * @param string $p_where the condition appended to the SQL select query , where must be given * @param array $p_array variable from the $p_where condition * @return type @@ -225,7 +225,7 @@ abstract class Table_Data_SQL extends Data_SQL return $count; } /** - * Count the number of record with the id , + *@brief Count the number of record with the id , * @return integer 0 doesn't exist , 1 exists */ public function exist() { @@ -235,7 +235,7 @@ abstract class Table_Data_SQL extends Data_SQL } /** - * Build the SQL select statement for querying the object and returns it + * @brief Build the SQL select statement for querying the object and returns it * @return string Query of the object */ public function build_query()