Skip to content

Commit

Permalink
Fix doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Aug 31, 2019
1 parent f2af28f commit 5188f3e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion htdocs/core/class/openid.class.php
Expand Up @@ -299,7 +299,7 @@ public function array2url($arr)
* @param string $url URL
* @param string $method Method
* @param string $params Params
* @return boolean|unknown
* @return boolean|void True if success, False if error
*/
public function FSOCK_Request($url, $method = "GET", $params = "")
{
Expand Down
6 changes: 3 additions & 3 deletions htdocs/core/db/Database.interface.php
Expand Up @@ -223,7 +223,7 @@ public function query($query, $usesavepoint = 0, $type = 'auto');
* @param string $name name of database (not used for mysql, used for pgsql)
* @param int $port Port of database server
* @return resource Database access handler
* @see close
* @see close()
*/
public function connect($host, $login, $passwd, $name, $port = 0);

Expand Down Expand Up @@ -265,7 +265,7 @@ public function getDefaultCollationDatabase();
*
* @param resource $resultset Resulset of requests
* @return int Nb of lines
* @see affected_rows
* @see affected_rows()
*/
public function num_rows($resultset);
// phpcs:enable
Expand Down Expand Up @@ -461,7 +461,7 @@ public function free($resultset = null);
* Close database connexion
*
* @return boolean True if disconnect successfull, false otherwise
* @see connect
* @see connect()
*/
public function close();

Expand Down
2 changes: 1 addition & 1 deletion htdocs/core/db/pgsql.class.php
Expand Up @@ -607,7 +607,7 @@ public function fetch_row($resultset)
/**
* Return number of lines for result of a SELECT
*
* @param resourse $resultset Resulset of requests
* @param resource $resultset Resulset of requests
* @return int Nb of lines, -1 on error
* @see affected_rows()
*/
Expand Down

0 comments on commit 5188f3e

Please sign in to comment.