*/ abstract class AbstractProvider implements Provider { /** * Returns the results for the 'localhost' special case. * * @return Location */ protected function getLocationForLocalhost(): Location { return Address::createFromArray([ 'providedBy' => $this->getName(), 'locality' => 'localhost', 'country' => 'localhost', ]); } }