Fix phpcs

This commit is contained in:
Laurent Destailleur 2019-01-30 20:06:05 +01:00
parent c1f3f4c2b5
commit 01f1f6162f

View File

@ -303,13 +303,13 @@ class ChargeSociales extends CommonObject
/**
* Met a jour une charge sociale
* Update social or fiscal contribution
*
* @param User $user Utilisateur qui modifie
* @param User $user User that modify
* @param int $notrigger 0=launch triggers after, 1=disable triggers
* @return int <0 si erreur, >0 si ok
* @return int <0 if KO, >0 if OK
*/
function update($user,$notrigger=0)
function update($user, $notrigger=0)
{
$error=0;
$this->db->begin();
@ -357,8 +357,6 @@ class ChargeSociales extends CommonObject
$this->db->commit();
return 1;
}
}
/**