for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace PersonalGalaxy\RSS\Entity\Article;
final class Description
{
private $value;
public function __construct(string $value)
$this->value = $value;
}
public function __toString(): string
return $this->value;