for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Sylius\ShopApiPlugin\Command;
final class SendResetPasswordToken
{
/**
* @var string
*/
private $email;
public function __construct(string $email)
$this->email = $email;
}
public function email(): string
return $this->email;