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;
use libphonenumber\PhoneNumber;
class OtpResend implements ResendInterface
{
/**
* @var ConfirmationSubjectInterface
*/
protected $subject;
* @var PhoneNumber
protected $mobile;
* @return string
public function getSubjectValue()
return $this->mobile;
}
* @return PhoneNumber
public function getMobile()
* @param PhoneNumber $mobile
public function setMobile(PhoneNumber $mobile)
$this->mobile = $mobile;
* {@inheritdoc}
public function getSubject()
return $this->subject;
public function setSubject(ConfirmationSubjectInterface $subject)
$this->subject = $subject;