Example #1
0
 /**
  * Get all events created or modified since the given date.
  *
  * If a date is not provided, all events in the system will be returned.
  *
  * @param DateTime $modified_since
  *
  * @return ...
  */
 public function eventProfiles(DateTime $modified_since = null)
 {
     return $this->client->srv('event_profiles', ['modified_since' => $modified_since]);
 }