<?php namespace React\Dns\Model; class Record { public $name; public $type; public $class; public $ttl; public $data; public function __construct($name, $type, $class, $ttl = 0, $data = null) { $this->name = $name; $this->type = $type; $this->class = $class; $this->ttl = $ttl; $this->data = $data; } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
HeaderBag.php | File | 1.26 KB | 0644 |
|
Message.php | File | 2.28 KB | 0644 |
|
Record.php | File | 398 B | 0644 |
|