/var/www/flurhymez/vendor/google/apiclient-services/src/CivicInfo/Resource
Edit: /var/www/flurhymez/vendor/google/apiclient-services/src/CivicInfo/Resource/Divisions.php (1863B)
* $civicinfoService = new Google\Service\CivicInfo(...);
* $divisions = $civicinfoService->divisions;
*
*/
class Divisions extends \Google\Service\Resource
{
/**
* Searches for political divisions by their natural name or OCD ID.
* (divisions.search)
*
* @param array $optParams Optional parameters.
*
* @opt_param string query The search query. Queries can cover any parts of a
* OCD ID or a human readable division name. All words given in the query are
* treated as required patterns. In addition to that, most query operators of
* the Apache Lucene library are supported. See
* http://lucene.apache.org/core/2_9_4/queryparsersyntax.html
* @return DivisionSearchResponse
*/
public function search($optParams = [])
{
$params = [];
$params = array_merge($params, $optParams);
return $this->call('search', [$params], DivisionSearchResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Divisions::class, 'Google_Service_CivicInfo_Resource_Divisions');