/**
  * Get Patients by phone number
  *
  * @param: Number, SortParam, PageSize, Page 
  * 
  */
 public function PatientPhoneNumberSearch($query)
 {
     $client = new SoapClient($this->wsdl, $this->connection);
     $response = $client->PatientPhoneNumberSearch($query);
     $responsearray = json_decode(json_encode($response), true);
     return $responsearray;
 }