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

Example syntax error fixed (#1)

This commit is contained in:
Ayesh Karunaratne 2016-07-07 14:38:00 +05:30 committed by GitHub
parent ba6016dd0a
commit 2c8a4aec41

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);
});
```