Merge pull request #27900 from thibdrev/patch-3

qual: phpstan for htdocs/compta/tva/class/tva.class.php
This commit is contained in:
Laurent Destailleur
2024-01-30 21:15:48 +01:00
committed by GitHub

View File

@@ -63,7 +63,7 @@ class Tva extends CommonObject
public $num_payment;
/**
* @var DateTime
* @var int Creation date
*/
public $datec;
@@ -82,11 +82,6 @@ class Tva extends CommonObject
*/
public $rappro;
/**
* @var integer|string totalpaid
*/
public $totalpaid;
/**
* @var string label
*/
@@ -426,9 +421,9 @@ class Tva extends CommonObject
$this->amount = '';
$this->label = '';
$this->note = '';
$this->fk_bank = '';
$this->fk_user_creat = '';
$this->fk_user_modif = '';
$this->fk_bank = 0;
$this->fk_user_creat = 0;
$this->fk_user_modif = 0;
}