FIX space-based indent (misconfigured IDE didn't take editorconfig into account)

+ fix tab-based code alignment whitespace (≠indentation)
This commit is contained in:
atm-florian 2022-04-01 15:40:03 +02:00
parent 560b8dc04c
commit d84af9fdcd

View File

@ -674,7 +674,6 @@ class FactureFournisseurRec extends CommonInvoice
return $this->fetch_lines(); return $this->fetch_lines();
} }
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
/** /**
* Get lines of template invoices into this->lines * Get lines of template invoices into this->lines
@ -2092,7 +2091,7 @@ class FactureFournisseurLigneRec extends CommonObjectLine
$this->product_type = $objp->product_type; $this->product_type = $objp->product_type;
$this->date_start = $objp->date_start; $this->date_start = $objp->date_start;
$this->date_end = $objp->date_end; $this->date_end = $objp->date_end;
$this->info_bits = $objp->info_bits ; $this->info_bits = $objp->info_bits;
$this->special_code = $objp->special_code; $this->special_code = $objp->special_code;
$this->rang = $objp->rang; $this->rang = $objp->rang;
$this->fk_unit = $objp->fk_unit; $this->fk_unit = $objp->fk_unit;