Skip to content

Instantly share code, notes, and snippets.

@JKetelaar
Created April 16, 2018 19:20
Show Gist options
  • Save JKetelaar/fa6ad6048e8b99bf40876b09d4ac75ff to your computer and use it in GitHub Desktop.
Save JKetelaar/fa6ad6048e8b99bf40876b09d4ac75ff to your computer and use it in GitHub Desktop.
/**
* @return Appointment[]
*/
public function getDentistAppointments()
{
$appointments = [];
foreach($this->dentistAppointments as $appointment){
if ($appointment->isActive()){
$appointments[] = $appointment;
}
}
return $appointments;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment