diff options
Diffstat (limited to 'assets/php/vendor/react/dns/src/Query/Query.php')
-rwxr-xr-x | assets/php/vendor/react/dns/src/Query/Query.php | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/assets/php/vendor/react/dns/src/Query/Query.php b/assets/php/vendor/react/dns/src/Query/Query.php deleted file mode 100755 index aef6e05..0000000 --- a/assets/php/vendor/react/dns/src/Query/Query.php +++ /dev/null @@ -1,19 +0,0 @@ -<?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; - } -} |