for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Kodus\Mail;
class Header
{
/**
* @var string
*/
private $name;
private $value;
public function __construct(string $name, string $value)
$this->name = $name;
$this->value = $value;
}
public function getName(): string
return $this->name;
public function getValue(): string
return $this->value;