Skip to content

Instantly share code, notes, and snippets.

@mfoti
Created February 7, 2019 16:30
Show Gist options
  • Save mfoti/57391233f6bc14f10d276507e626a67f to your computer and use it in GitHub Desktop.
Save mfoti/57391233f6bc14f10d276507e626a67f 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