for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PeterNijssen\Ses\Model;
class Dns
{
/**
* @var string
*/
private $type;
private $name;
private $value;
* Dns constructor.
*
* @param string $type
* @param string $name
* @param string $value
public function __construct($type, $name, $value)
$this->type = $type;
$this->name = $name;
$this->value = $value;
}
* @return string
public function getType()
return $this->type;
public function getName()
return $this->name;
public function getValue()
return $this->value;