Codebase list reactphp-dns / ad76bd8 src / Query / ExecutorInterface.php
ad76bd8

Tree @ad76bd8 (Download .tar.gz)

ExecutorInterface.php @ad76bd8raw · history · blame

1
2
3
4
5
6
7
8
<?php

namespace React\Dns\Query;

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