From 4459e9595d0203eeb1706bc5d8e8794fd55e2e7f Mon Sep 17 00:00:00 2001 From: Dominique Fournier Date: Fri, 6 Jul 2018 17:44:35 +0000 Subject: [PATCH] domci update Store the version 0.51 git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@4267 bf3deb0d-5f1a-0410-827f-c0cc1f45334c --- convert.php | 2 +- form.php | 5 ++++- version.php | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) 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");