for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DoS\UserBundle\Confirmation\Model;
use DoS\UserBundle\Confirmation\ConfirmationSubjectInterface;
class EmailVerification implements VerificationInterface
{
/**
* @var ConfirmationSubjectInterface
*/
protected $subject;
* @var string
protected $token;
* {@inheritdoc}
public function getVerifyValue()
return $this->token;
}
public function getToken()
public function setToken($token)
$this->token = $token;
public function getSubject()
return $this->subject;
public function setSubject(ConfirmationSubjectInterface $subject = null)
$this->subject = $subject;