let createDomainZone() return the DnsZone object for better use later

Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann (d00p)
2016-05-15 09:56:48 +02:00
parent 8d8da0986a
commit 68fa0e6576
4 changed files with 10 additions and 5 deletions

View File

@@ -21,12 +21,15 @@ class DnsZone
public $origin;
public $serial;
public $records;
public function __construct($ttl = 18000, $origin = '', $records = null)
public function __construct($ttl = 18000, $origin = '', $serial = '', $records = null)
{
$this->ttl = $ttl;
$this->origin = $origin;
$this->serial = $serial;
$this->records = $records;
}