Codebase list reactphp-dns / upstream/0.4.13 src / Query / ExecutorInterface.php
upstream/0.4.13

Tree @upstream/0.4.13 (Download .tar.gz)

ExecutorInterface.php @upstream/0.4.13raw · history · blame

1
2
3
4
5
6
7
8
<?php

namespace React\Dns\Query;

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