Codebase list reactphp-dns / 3d5acd7 src / Query / ExecutorInterface.php
3d5acd7

Tree @3d5acd7 (Download .tar.gz)

ExecutorInterface.php @3d5acd7raw · history · blame

1
2
3
4
5
6
7
8
<?php

namespace React\Dns\Query;

interface ExecutorInterface
{
    public function query($nameserver, Query $query);
}