From 2533dc624455eda38919659b986950de11c71c8a Mon Sep 17 00:00:00 2001 From: Dany De Bontridder Date: Sat, 2 Nov 2019 13:42:04 +0100 Subject: [PATCH] Acc_Ledger_History add documentation --- include/class/acc_ledger_history.class.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/include/class/acc_ledger_history.class.php b/include/class/acc_ledger_history.class.php index cf63b712c..117764086 100644 --- a/include/class/acc_ledger_history.class.php +++ b/include/class/acc_ledger_history.class.php @@ -42,6 +42,15 @@ abstract class Acc_Ledger_History protected $m_mode; //!< mode of export L : one line, E accounting writing , D : Detail public $db; //!< database connx + /** + * + * @param Database $cn + * @param array $pa_ledger array of jrn_def.jrn_def_id + * @param integer $p_from periode + * @param integer $p_to + * @param char $p_mode E D L or A , for Extended ,Detail , Listing , Accounting + * @throws Exception if $pa_ledger is not an array + */ function __construct(Database $cn, $pa_ledger, $p_from, $p_to, $p_mode) { if (is_array($pa_ledger) == FALSE) {