diff --git a/dblayer.php b/dblayer.php index 699333e..48932f4 100644 --- a/dblayer.php +++ b/dblayer.php @@ -686,8 +686,8 @@ class dblayer * @param array|null $order Sort the columns by orientation * $order = array (array ($key, $orientation), ...) * $key=>column, $orientation=ASC/DESC - * @param bool|null $whereOr The WHERE parameters are separated by OR instead - * of AND + * @param boolean|null $whereOr The WHERE parameters are separated by OR + * instead of AND * @param array|null $foreignSelect Add a filter on foreign keys * @return array array ([0] => array (column=>value, column=>value),); */ @@ -1422,8 +1422,8 @@ class dblayer @param array|null &$order Sort the columns by orientation $order = array (array ($key, $orientation), ...) $key=>column, $orientation=ASC/DESC - @param bool|null &$whereOr The WHERE parameters are separated by OR - instead of AND + @param boolean|null &$whereOr The WHERE parameters are separated by OR + instead of AND @param array|null &$foreignSelect Add a filter on foreign keys */ public function hookpreread (&$select, &$display, &$order, &$whereOr, &$foreignSelect) diff --git a/dblayerauthzgroups.php b/dblayerauthzgroups.php index 33999c3..c667906 100644 --- a/dblayerauthzgroups.php +++ b/dblayerauthzgroups.php @@ -41,7 +41,7 @@ class dblayerauthzgroups extends dblayer @param array|null &$order Sort the columns by orientation $order = array (array ($key, $orientation), ...) $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 @param array|null &$foreignSelect Add a filter on foreign keys */ public function hookpreread (&$select, &$display, &$order, &$whereOr, diff --git a/file.php b/file.php index 43e8c3f..aa0b2e8 100644 --- a/file.php +++ b/file.php @@ -445,7 +445,7 @@ class file /** Return a ini file converted to an array * @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 */ 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 * directories) * @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 * @throws If parent directory not exists, is not writeable or the current * dir is not writeable diff --git a/mail.php b/mail.php index e84e0d6..cf4e5b3 100644 --- a/mail.php +++ b/mail.php @@ -729,7 +729,8 @@ class mail * @param string $fileContent The content of the file in binary * @param string|null $encoding The output encoding. Can be * 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) */ public function addAttachment ($name, $fileContent, $encoding="base64", @@ -834,7 +835,7 @@ class mail /** Get an attachment of the mail * @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 */ public function getAttachment ($number, $inline = false) @@ -851,7 +852,7 @@ class mail /** Get the attachment details * @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 */ public function getAttachmentDetails ($number, $inline = false) @@ -879,7 +880,7 @@ class mail /** Return the list of the sectionID containing a attachment. Contains the * 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 */ private function getAttachmentID ($inline = false) diff --git a/route.php b/route.php index 72a1726..1e4af79 100644 --- a/route.php +++ b/route.php @@ -67,7 +67,7 @@ class route /** Return the baseURL of the site * Always finish with a slash * @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 */ function baseURL ($module = FALSE, $absolute=false) @@ -161,7 +161,7 @@ class route } /** 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 */ function requestURL ($absolute = false)