string without space on adresse header on facture and facture recap
This commit is contained in:
parent
9d304611c8
commit
04b3c5ca2c
@ -32,9 +32,9 @@ class FileExportHelpers
|
||||
}
|
||||
|
||||
public static function RemoveSpaceFromString(string $string){
|
||||
$string = trim($string);
|
||||
$string = str_replace(" ",'',$string);
|
||||
return $string;
|
||||
$stringWithoutSpace = trim($string);
|
||||
$stringWithoutSpace = str_replace(" ",'',$stringWithoutSpace);
|
||||
return $stringWithoutSpace;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user