for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Stratadox\CardGame\Infrastructure\IdentityManagement;
use Stratadox\CardGame\Match\MatchIdGenerator;
use Stratadox\CardGame\Match\MatchId;
final class DefaultMatchIdGenerator extends IdGenerator implements MatchIdGenerator
{
public function generate(): MatchId
return MatchId::from($this->newIdFor('match'));
}