示例#1
0
 public function updatePersonnalInformations($idSite, $visitorId, $name = false, $email = false, $phone = false, $comments = false)
 {
     if ($phone || $comments) {
         $this->authenticate($idSite);
     }
     return ChatPersonnalInformation::update($visitorId, $name, $email, $phone, $comments);
 }