File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -22,27 +22,27 @@ trait ResetPasswordRequestTrait
22
22
* @ORM\Column(type="string", length=20)
23
23
*/
24
24
#[ORM \Column(type: Types::STRING , length: 20 )]
25
- private $ selector ;
25
+ protected $ selector ;
26
26
27
27
/**
28
28
* @ORM\Column(type="string", length=100)
29
29
*/
30
30
#[ORM \Column(type: Types::STRING , length: 100 )]
31
- private $ hashedToken ;
31
+ protected $ hashedToken ;
32
32
33
33
/**
34
34
* @ORM\Column(type="datetime_immutable")
35
35
*/
36
36
#[ORM \Column(type: Types::DATETIME_IMMUTABLE )]
37
- private $ requestedAt ;
37
+ protected $ requestedAt ;
38
38
39
39
/**
40
40
* @ORM\Column(type="datetime_immutable")
41
41
*/
42
42
#[ORM \Column(type: Types::DATETIME_IMMUTABLE )]
43
- private $ expiresAt ;
43
+ protected $ expiresAt ;
44
44
45
- private function initialize (\DateTimeInterface $ expiresAt , string $ selector , string $ hashedToken )
45
+ protected function initialize (\DateTimeInterface $ expiresAt , string $ selector , string $ hashedToken )
46
46
{
47
47
$ this ->requestedAt = new \DateTimeImmutable ('now ' );
48
48
$ this ->expiresAt = $ expiresAt ;
You can’t perform that action at this time.
0 commit comments