/**
  * Add phone
  *
  * @param Phone $phone
  *
  * @return ContactInformation
  */
 public function addPhone(Phone $phone)
 {
     $this->phones[] = $phone;
     $phone->setContactInformation($this);
     return $this;
 }