for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the CwdPowerDNS Client
*
* (c) 2018 cwd.at GmbH <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cwd\PowerDNSClient\Model;
class Config
{
/** @var string|null */
private $type;
private $name;
private $value;
/**
* @return null|string
public function getType(): ?string
return $this->type;
}
* @param null|string $type
* @return Config
public function setType(?string $type): Config
$this->type = $type;
return $this;
public function getName(): ?string
return $this->name;
* @param null|string $name
public function setName(?string $name): Config
$this->name = $name;
public function getValue(): ?string
return $this->value;
* @param null|string $value
public function setValue(?string $value): Config
$this->value = $value;