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 VerifyAccount
{
/**
* @var string
*/
private $token;
public function __construct(string $token)
$this->token = $token;
}
public function token(): string
return $this->token;