for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace VideoGamesRecords\CoreBundle\Message\Player;
readonly class UpdatePlayerData
{
public function __construct(
private int $playerId,
) {
}
public function getPlayerId(): int
return $this->playerId;
public function getUniqueIdentifier(): string
return 'UpdatePlayerData' . $this->playerId;