Пример #1
0
 public function setSalTelprof($salTelprof)
 {
     if (!isCorrectNumeroDeTelephone($salTelprof)) {
         throw new ExceptionPerso("Le numero de téléphone doit etre sur 10 chiffres", ExceptionPerso::ERR_TEL);
     }
     $this->sal_telprof = $salTelprof;
 }
Пример #2
0
 public function setPerTel($perTel)
 {
     if (!isCorrectNumeroDeTelephone($perTel)) {
         throw new ExceptionPerso("Le numéro de telephone doit contenir 10 chiffres.", ExceptionPerso::ERR_TEL);
     }
     $this->per_tel = $perTel;
 }