Update the PHPDocs to modify the invalid types of parameters

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@3272 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2016-12-08 15:33:26 +00:00
parent 1ddc03dcbb
commit 3a004fbdc0
7 changed files with 61 additions and 60 deletions

View File

@@ -291,8 +291,8 @@ class dblayer
}
/** Verify if the provided data can be inserted/updated in the database.
@param $data An array containing the data to verify with keys
@param $updatekey the key to update
@param array $data An array containing the data to verify with keys
@param mixed|null $updatekey the key to update
@return an array with the errors in array($key=>array($priority,$message))
*/
public function verify ($data, $updatekey=false)
@@ -972,7 +972,7 @@ class dblayer
/** Delete a tuple identified by its primary key
Return the number of deleted rows (can be 0 !)
@param strin|integer $deletekey The key of primary key to be deleted */
@param string|integer $deletekey The key of primary key to be deleted */
public function delete ($deletekey)
{
if ($this->debug) echo "== Entering delete\n";