We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdfbcc8 commit 3a4bc6eCopy full SHA for 3a4bc6e
Provider/AbstractProvider.php
@@ -19,7 +19,7 @@
19
/**
20
* @author William Durand <william.durand1@gmail.com>
21
*/
22
-abstract class AbstractProvider
+abstract class AbstractProvider implements Provider
23
{
24
25
* Returns the results for the 'localhost' special case.
@@ -29,6 +29,7 @@ abstract class AbstractProvider
29
protected function getLocationForLocalhost(): Location
30
31
return Address::createFromArray([
32
+ 'providedBy' => $this->getName(),
33
'locality' => 'localhost',
34
'country' => 'localhost',
35
]);
0 commit comments