File tree 1 file changed +24
-1
lines changed
1 file changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ replaced with the `final` class keyword. Extending this class is not allowed.
22
22
- Class became ` @final ` in ` v1.22.0 ` and in ` v2.0.0 ` the ` @final ` annotation was
23
23
replaced with the ` final ` class keyword. Extending this class is not allowed.
24
24
25
- - Command is now registered using the Symfony ` #[AsCommand] ` attribute
25
+ - Command is now registered using the Symfony ` #[AsCommand] ` attribute.
26
26
27
27
## ResetPasswordControllerTrait
28
28
@@ -34,3 +34,26 @@ replaced with the `final` class keyword. Extending this class is not allowed.
34
34
35
35
- Annotation support for ResetPasswordRequest Doctrine entities that use the
36
36
trait has been dropped - attribute mapping is required.
37
+
38
+ - Property types were added to ` selector ` , ` hashedToken ` , ` requestedAt ` , & ` expiresAt ` .
39
+
40
+ ``` diff
41
+ - protected $selector;
42
+ + protected string $selector;
43
+
44
+ - protected $hashedToken;
45
+ + protected string $hashedToken;
46
+
47
+ - protected $requestedAt;
48
+ + protected \DateTimeImmutable $requestedAt;
49
+
50
+ - protected $expiresAt;
51
+ + protected \DateTimeInterface $expiresAt;
52
+ ```
53
+
54
+ - ` initalize() ` now returns ` void ` . Previously the return type was not declared
55
+
56
+ ``` diff
57
+ - protected function initialize(....)
58
+ + protected function initialize(....): void
59
+ ```
You can’t perform that action at this time.
0 commit comments