for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace Aggrego\FragmentedDataBoard\Board;
use TimiTao\ValueObject\Utils\StringValueObject;
class State extends StringValueObject
{
public function __construct(string $value)
parent::__construct(self::class, $value);
}