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

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

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

<?php

namespace React\Dns\Query;

class Query
{
    public $name;
    public $type;
    public $class;
    public $currentTime;

    public function __construct($name, $type, $class, $currentTime)
    {
        $this->name = $name;
        $this->type = $type;
        $this->class = $class;
        $this->currentTime = $currentTime;
    }
}