for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace App\Message;
use App\Entity\User;
final class SendEmailConfirmationLink
{
private User $user;
public function __construct(User $user)
$this->user = $user;
}
public function getUser(): User
return $this->user;