Skip to content

Commit f5da3c3

Browse files
minor symfony#53324 [Notifier] [Redlink] Change property visibility (OskarStark)
This PR was merged into the 7.1 branch. Discussion ---------- [Notifier] [Redlink] Change property visibility | Q | A | ------------- | --- | Branch? | 7.1 | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | -- | License | MIT As this class is final, no need to have a protected one Commits ------- 37dfb0e [Notifier][Redlink] Change property visibility
2 parents 6336d4e + 37dfb0e commit f5da3c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Notifier/Bridge/Redlink/RedlinkOptions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*/
1919
final class RedlinkOptions implements MessageOptionsInterface
2020
{
21-
public function __construct(protected array $options = [])
21+
public function __construct(private array $options = [])
2222
{
2323
}
2424

0 commit comments

Comments
 (0)