DomCI : Change the non existing PHPDocs types

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@3269 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2016-12-08 15:07:52 +00:00
parent aee1ee62cc
commit 1ddc03dcbb
5 changed files with 14 additions and 13 deletions

View File

@@ -686,8 +686,8 @@ class dblayer
* @param array|null $order Sort the columns by orientation * @param array|null $order Sort the columns by orientation
* $order = array (array ($key, $orientation), ...) * $order = array (array ($key, $orientation), ...)
* $key=>column, $orientation=ASC/DESC * $key=>column, $orientation=ASC/DESC
* @param bool|null $whereOr The WHERE parameters are separated by OR instead * @param boolean|null $whereOr The WHERE parameters are separated by OR
* of AND * instead of AND
* @param array|null $foreignSelect Add a filter on foreign keys * @param array|null $foreignSelect Add a filter on foreign keys
* @return array array ([0] => array (column=>value, column=>value),); * @return array array ([0] => array (column=>value, column=>value),);
*/ */
@@ -1422,8 +1422,8 @@ class dblayer
@param array|null &$order Sort the columns by orientation @param array|null &$order Sort the columns by orientation
$order = array (array ($key, $orientation), ...) $order = array (array ($key, $orientation), ...)
$key=>column, $orientation=ASC/DESC $key=>column, $orientation=ASC/DESC
@param bool|null &$whereOr The WHERE parameters are separated by OR @param boolean|null &$whereOr The WHERE parameters are separated by OR
instead of AND instead of AND
@param array|null &$foreignSelect Add a filter on foreign keys */ @param array|null &$foreignSelect Add a filter on foreign keys */
public function hookpreread (&$select, &$display, &$order, &$whereOr, public function hookpreread (&$select, &$display, &$order, &$whereOr,
&$foreignSelect) &$foreignSelect)

View File

@@ -41,7 +41,7 @@ class dblayerauthzgroups extends dblayer
@param array|null &$order Sort the columns by orientation @param array|null &$order Sort the columns by orientation
$order = array (array ($key, $orientation), ...) $order = array (array ($key, $orientation), ...)
$key=>column, $orientation=ASC/DESC $key=>column, $orientation=ASC/DESC
@param bool|null &$whereOr The WHERE parameters are separated by OR @param boolean|null &$whereOr The WHERE parameters are separated by OR
instead of AND instead of AND
@param array|null &$foreignSelect Add a filter on foreign keys */ @param array|null &$foreignSelect Add a filter on foreign keys */
public function hookpreread (&$select, &$display, &$order, &$whereOr, public function hookpreread (&$select, &$display, &$order, &$whereOr,

View File

@@ -445,7 +445,7 @@ class file
/** Return a ini file converted to an array /** Return a ini file converted to an array
* @param string $filename The filename of the ini file being parsed. * @param string $filename The filename of the ini file being parsed.
* @param bool $process_sections Process the sections * @param boolean $process_sections Process the sections
* @return array * @return array
*/ */
public function parse_ini_file ($filename, $process_sections = false) public function parse_ini_file ($filename, $process_sections = false)
@@ -513,7 +513,7 @@ class file
* If the recurse flag is true, remove the content too (files and * If the recurse flag is true, remove the content too (files and
* directories) * directories)
* @param string $dirname The directory to remove * @param string $dirname The directory to remove
* @param bool $recursive Remove recursively * @param boolean $recursive Remove recursively
* @return bool true if all is removed, false otherwise * @return bool true if all is removed, false otherwise
* @throws If parent directory not exists, is not writeable or the current * @throws If parent directory not exists, is not writeable or the current
* dir is not writeable * dir is not writeable

View File

@@ -729,7 +729,8 @@ class mail
* @param string $fileContent The content of the file in binary * @param string $fileContent The content of the file in binary
* @param string|null $encoding The output encoding. Can be * @param string|null $encoding The output encoding. Can be
* base64/quoted-printable * base64/quoted-printable
* @param bool|null $inline Store the file in inline mode (multipart/related) * @param boolean|null $inline Store the file in inline mode
* (multipart/related)
* If false, store the file in attached mode (multipart/mixed) * If false, store the file in attached mode (multipart/mixed)
*/ */
public function addAttachment ($name, $fileContent, $encoding="base64", public function addAttachment ($name, $fileContent, $encoding="base64",
@@ -834,7 +835,7 @@ class mail
/** Get an attachment of the mail /** Get an attachment of the mail
* @param integer $number the number of attach to get starting to 0 * @param integer $number the number of attach to get starting to 0
* @param bool|null $inline Return only the attachments Inline if true * @param boolean|null $inline Return only the attachments Inline if true
* @return the content of the attachment. Can be binary * @return the content of the attachment. Can be binary
*/ */
public function getAttachment ($number, $inline = false) public function getAttachment ($number, $inline = false)
@@ -851,7 +852,7 @@ class mail
/** Get the attachment details /** Get the attachment details
* @param integer $number the number of attach to get starting to 0 * @param integer $number the number of attach to get starting to 0
* @param bool|null $inline Return only the attachments Inline if true * @param boolean|null $inline Return only the attachments Inline if true
* @return array containing the information of the attachment * @return array containing the information of the attachment
*/ */
public function getAttachmentDetails ($number, $inline = false) public function getAttachmentDetails ($number, $inline = false)
@@ -879,7 +880,7 @@ class mail
/** Return the list of the sectionID containing a attachment. Contains the /** Return the list of the sectionID containing a attachment. Contains the
* inline attachments too. * inline attachments too.
* @param bool $inline Return only the sections Inline if true * @param boolean $inline Return only the sections Inline if true
* @return array The sectionIDs * @return array The sectionIDs
*/ */
private function getAttachmentID ($inline = false) private function getAttachmentID ($inline = false)

View File

@@ -67,7 +67,7 @@ class route
/** Return the baseURL of the site /** Return the baseURL of the site
* Always finish with a slash * Always finish with a slash
* @param string|null $module The module name (if thereis one) * @param string|null $module The module name (if thereis one)
* @param bool|null $absolute Return the baseURL in absolute * @param boolean|null $absolute Return the baseURL in absolute
* @return string The URL base * @return string The URL base
*/ */
function baseURL ($module = FALSE, $absolute=false) function baseURL ($module = FALSE, $absolute=false)
@@ -161,7 +161,7 @@ class route
} }
/** Return the complete URL used to see this page /** Return the complete URL used to see this page
* @param bool|null $absolute Return the absolute URL * @param boolean|null $absolute Return the absolute URL
* @return string the complete URL used to see this page * @return string the complete URL used to see this page
*/ */
function requestURL ($absolute = false) function requestURL ($absolute = false)