Skip to content

Instantly share code, notes, and snippets.

@mfoti
Created February 7, 2019 16:30
Show Gist options
  • Save mfoti/ec9dbe0f96272c411383506039d7d63d to your computer and use it in GitHub Desktop.
Save mfoti/ec9dbe0f96272c411383506039d7d63d to your computer and use it in GitHub Desktop.
abstract public function getAvailabilities(\DateTime $start_time, \DateTime $end_time, $users = [], $medical_centers = []);
/**
* Validate and format response from webservice
* @param $raw_response
* @param $method
* @return mixed
*/
abstract public function clearResponse($raw_response, $method);
/**
* @param array $params
* @return mixed
*/
abstract public function createBooking($params);
/**
* @param $params
* @return mixed
*/
abstract public function deleteBooking($params);
/**
* @return mixed
*/
abstract public function getHealthServices();
/**
* @return mixed
*/
abstract public function getDoctors();
/**
* @return mixed
*/
abstract public function getMedicalCenters();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment