1
0
mirror of https://github.com/danog/dns.git synced 2025-01-22 21:41:11 +01:00

Merge pull request #35 from Ayesh/master

README.md file example PHP snippet fix
This commit is contained in:
Bob Weinand 2016-07-07 12:53:33 +02:00 committed by GitHub
commit d9b2383624

View File

@ -39,7 +39,7 @@ Amp\run(function () {
$combinedGoogleResult = (yield Amp\Dns\resolve("google.com"));
var_dump($combinedGoogleResult);
$googleMx = (yield Amp\Dns\query("google.com", Amp\Dns\Record::MX);
$googleMx = (yield Amp\Dns\query("google.com", Amp\Dns\Record::MX));
var_dump($googleMx);
});
```