Пример #1
0
 /**
  * Simple function to return an array of Events based on search criterias.
  *
  * @param EWSClient $client
  *   Client.
  * @param array $queries
  *   Array of query arrays for building the query string.
  * @param string $class
  *   Class name of the objects to create with the results.
  * @param string $path
  *   Path to the API.
  *
  * @return array
  *
  * @throws EWSClientError
  */
 public static function searches($client, $queries, $class = '\\Cruk\\EventSdk\\Event', $path = '/events.json')
 {
     return parent::searches($client, $queries, $class, $path);
 }