From d23188c64abc2953e31704e19c2c4ed741d6bad4 Mon Sep 17 00:00:00 2001 From: Regis Houssin <regis@dolibarr.fr> Date: Sun, 30 Sep 2012 20:49:13 +0200 Subject: [PATCH] Fix: doxygen --- htdocs/compta/facture/class/facture-rec.class.php | 1 + htdocs/compta/facture/class/facture.class.php | 2 ++ htdocs/core/class/commondocgenerator.class.php | 11 ++++++----- htdocs/core/lib/member.lib.php | 3 +-- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/htdocs/compta/facture/class/facture-rec.class.php b/htdocs/compta/facture/class/facture-rec.class.php index 95fd10c7068..02c765ba131 100644 --- a/htdocs/compta/facture/class/facture-rec.class.php +++ b/htdocs/compta/facture/class/facture-rec.class.php @@ -410,6 +410,7 @@ class FactureRec extends Facture * @param int $type Type of line (0=product, 1=service) * @param int $rang Position of line * @param int $special_code Special code + * @param string $label Label of the line * @return int <0 if KO, Id of line if OK */ function addline($facid, $desc, $pu_ht, $qty, $txtva, $fk_product=0, $remise_percent=0, $price_base_type='HT', $info_bits=0, $fk_remise_except='', $pu_ttc=0, $type=0, $rang=-1, $special_code=0, $label='') diff --git a/htdocs/compta/facture/class/facture.class.php b/htdocs/compta/facture/class/facture.class.php index 6db8f202fd4..c37e464514b 100644 --- a/htdocs/compta/facture/class/facture.class.php +++ b/htdocs/compta/facture/class/facture.class.php @@ -1880,6 +1880,7 @@ class Facture extends CommonInvoice * @param int $fk_parent_line Id of parent line * @param int $fk_fournprice To calculate margin * @param int $pa_ht Buying price of line + * @param string $label Label of the line * @return int <0 if KO, Id of line if OK */ function addline($facid, $desc, $pu_ht, $qty, $txtva, $txlocaltax1=0, $txlocaltax2=0, $fk_product=0, $remise_percent=0, $date_start='', $date_end='', $ventil=0, $info_bits=0, $fk_remise_except='', $price_base_type='HT', $pu_ttc=0, $type=0, $rang=-1, $special_code=0, $origin='', $origin_id=0, $fk_parent_line=0, $fk_fournprice=null, $pa_ht=0, $label='') @@ -2035,6 +2036,7 @@ class Facture extends CommonInvoice * @param int $skip_update_total ??? * @param int $fk_fournprice To calculate margin * @param int $pa_ht Buying price of line + * @param string $label Label of the line * @return int < 0 if KO, > 0 if OK */ function updateline($rowid, $desc, $pu, $qty, $remise_percent, $date_start, $date_end, $txtva, $txlocaltax1=0, $txlocaltax2=0, $price_base_type='HT', $info_bits=0, $type=0, $fk_parent_line=0, $skip_update_total=0, $fk_fournprice=null, $pa_ht=0, $label='') diff --git a/htdocs/core/class/commondocgenerator.class.php b/htdocs/core/class/commondocgenerator.class.php index 5007dca817f..bf3e8e98ddf 100755 --- a/htdocs/core/class/commondocgenerator.class.php +++ b/htdocs/core/class/commondocgenerator.class.php @@ -168,13 +168,14 @@ abstract class CommonDocGenerator /** * Rect pdf * - * @param unknown_type $pdf - * @param unknown_type $x - * @param unknown_type $y - * @param unknown_type $l - * @param unknown_type $h + * @param PDF $pdf Object PDF + * @param float $x Abscissa of first point + * @param float $y Ordinate of first point + * @param float $l ?? + * @param float $h ?? * @param int $hidetop Hide top * @param int $hidebottom Hide bottom + * @return void */ function printRect($pdf, $x, $y, $l, $h, $hidetop=0, $hidebottom=0) { diff --git a/htdocs/core/lib/member.lib.php b/htdocs/core/lib/member.lib.php index 15ada8ed4c0..c3314bb3087 100644 --- a/htdocs/core/lib/member.lib.php +++ b/htdocs/core/lib/member.lib.php @@ -103,8 +103,7 @@ function member_prepare_head($object) /** * Return array head with list of tabs to view object informations * - * @param Object $object Member - * @return array head + * @return array head */ function member_admin_prepare_head() { -- GitLab