for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace Aggrego\Domain\Profile\ValueObject;
use Aggrego\Domain\Shared\ValueObject\AbstractStringValueObject;
class Name extends AbstractStringValueObject
{
public function __construct(string $value)
parent::__construct($value, self::class);
}