diff --git a/convert.php b/convert.php index 40211cd..3ccd058 100644 --- a/convert.php +++ b/convert.php @@ -87,7 +87,7 @@ class convert /** Convert the provided integer to human readable format * Example : 1440000000 => 1.44Mo * @param integer $bytes The number of bytes to convert - * @param integer $decimal The number of decimal + * @param integer $decimals The number of decimal */ public static function humanSize ($bytes, $decimals = 2) { diff --git a/form.php b/form.php index 9955638..5e1e311 100644 --- a/form.php +++ b/form.php @@ -110,7 +110,8 @@ class form /** Set logging class an method * @param callable $loggingCallable The callable function. This method will * receive two params : the LOG level (LOG_ERROR...) and the message - * @param string|null $basemsg The basemsg added at the beginning of the log + * @param string|null $loggingBasemsg The basemsg added at the beginning of + * the log */ public function logging ($loggingCallable, $loggingBasemsg = "") { @@ -120,6 +121,8 @@ class form // }}} /** The private method to log if the $this->loggingCallable is defined + * @param integer $prio The priority of the message + * @param string $msg The message to store */ private function loggingCallable ($prio, $msg) { diff --git a/version.php b/version.php index 5fa784b..ae1a910 100644 --- a/version.php +++ b/version.php @@ -11,4 +11,4 @@ if (!defined ("DOMFRAMEWORK_VERSION") || version_compare (DOMFRAMEWORK_VERSION, "0.6") < 0) die ("Your DomFramework version is too old : 0.6 minimum\n"); */ -define ("DOMFRAMEWORK_VERSION", "0.50"); +define ("DOMFRAMEWORK_VERSION", "0.51");