https://github.com/b3none/been-claimed
Detect whether a Google Maps listing has been claimed via their place ID
https://github.com/b3none/been-claimed
Last synced: 12 months ago
JSON representation
Detect whether a Google Maps listing has been claimed via their place ID
- Host: GitHub
- URL: https://github.com/b3none/been-claimed
- Owner: B3none
- Created: 2018-03-22T11:20:57.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-04-23T20:36:21.000Z (about 3 years ago)
- Last Synced: 2024-11-16T04:14:13.294Z (over 1 year ago)
- Language: PHP
- Homepage:
- Size: 38.1 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BeenClaimed
Detect whether a Google Maps listing has been claimed.
# Author
[B3none](https://b3none.co.uk/) - Developer / Maintainer
# Example usage
```php
$beenClaimedClient = new BeenClaimedClient();
$claimedSite = $beenClaimedClient->loadById((string)$id);
$claimedSite->hasBeenClaimed();
$unclaimedSite = $beenClaimedClient->loadByMapsUrl((string)$mapsUrl);
$unclaimedSite->hasBeenClaimed();
```