Skip to content

Instantly share code, notes, and snippets.

@ZhukV
Last active August 31, 2016 06:45
Show Gist options
  • Save ZhukV/5da0ea83488598598b8225ffcfeb9855 to your computer and use it in GitHub Desktop.
Save ZhukV/5da0ea83488598598b8225ffcfeb9855 to your computer and use it in GitHub Desktop.
<?php
$client = new Client();
$api = new Api($client);
$api->patient()->sendReceiptEmail($practiceId, $appointmentId, $paymentId, 'zhuk2205@gmail.com');
$api->appointment()->get($practiceId, $appointmentId);
@Comrade42
Copy link

$api = new Api($client, $practiceId);
$api->getAppointmentApi()->get($appointmentId);

@Comrade42
Copy link

$client = new Client();
$client->getAppointmentApi()->get($appointmentId);

@Comrade42
Copy link

$client->getAppointmentApi()->getAppointment();
$client->getAppointment()->get();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment