8000 Make properties private · symfony/symfony@ca644f9 · GitHub
[go: up one dir, main page]

Skip to content

Commit ca644f9

Browse files
committed
Make properties private
1 parent 5186e41 commit ca644f9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Symfony/Component/Notifier/Recipient/EmailRecipientTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*/
1919
trait EmailRecipientTrait
2020
{
21-
protected $email;
21+
private $email;
2222

2323
public function getEmail(): string
2424
{

src/Symfony/Component/Notifier/Recipient/SmsRecipientTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*/
1919
trait SmsRecipientTrait
2020
{
21-
protected $phone;
21+
private $phone;
2222

2323
public function getPhone(): string
2424
{

0 commit comments

Comments
 (0)
0