1 | <?php |
||
7 | class OtpResend implements ResendInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var ConfirmationSubjectInterface |
||
11 | */ |
||
12 | protected $subject; |
||
13 | |||
14 | /** |
||
15 | * @var PhoneNumber |
||
16 | */ |
||
17 | protected $mobile; |
||
18 | |||
19 | /** |
||
20 | * @return string |
||
21 | */ |
||
22 | public function getSubjectValue() |
||
26 | |||
27 | /** |
||
28 | * @return PhoneNumber |
||
29 | */ |
||
30 | public function getMobile() |
||
34 | |||
35 | /** |
||
36 | * @param PhoneNumber $mobile |
||
37 | */ |
||
38 | public function setMobile(PhoneNumber $mobile) |
||
42 | |||
43 | /** |
||
44 | * {@inheritdoc} |
||
45 | */ |
||
46 | public function getSubject() |
||
50 | |||
51 | /** |
||
52 | * {@inheritdoc} |
||
53 | */ |
||
54 | public function setSubject(ConfirmationSubjectInterface $subject) |
||
58 | } |
||
59 |