GetAddressInterface.php 394 B

123456789101112131415161718192021
  1. <?php
  2. /*
  3. * This file is part of the Geocoder package.
  4. * For the full copyright and license information, please view the LICENSE
  5. * file that was distributed with this source code.
  6. *
  7. * @license MIT License
  8. */
  9. namespace Geocoder\Provider\MapQuest;
  10. use Geocoder\Location;
  11. interface GetAddressInterface
  12. {
  13. /**
  14. * @return Location|null
  15. */
  16. public function getAddress();
  17. }