File tree Expand file tree Collapse file tree
app/Livewire/Notifications Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ class Discord extends Component
1313{
1414 use AuthorizesRequests;
1515
16- public Team $ team ;
16+ public ? Team $ team = null ;
1717
1818 public DiscordNotificationSettings $ settings ;
1919
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ class Email extends Component
1818 protected $ listeners = ['refresh ' => '$refresh ' ];
1919
2020 #[Locked]
21- public Team $ team ;
21+ public ? Team $ team = null ;
2222
2323 #[Locked]
2424 public EmailNotificationSettings $ settings ;
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ class Pushover extends Component
1717 protected $ listeners = ['refresh ' => '$refresh ' ];
1818
1919 #[Locked]
20- public Team $ team ;
20+ public ? Team $ team = null ;
2121
2222 #[Locked]
2323 public PushoverNotificationSettings $ settings ;
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ class Slack extends Component
1717 protected $ listeners = ['refresh ' => '$refresh ' ];
1818
1919 #[Locked]
20- public Team $ team ;
20+ public ? Team $ team = null ;
2121
2222 #[Locked]
2323 public SlackNotificationSettings $ settings ;
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ class Telegram extends Component
1717 protected $ listeners = ['refresh ' => '$refresh ' ];
1818
1919 #[Locked]
20- public Team $ team ;
20+ public ? Team $ team = null ;
2121
2222 #[Locked]
2323 public TelegramNotificationSettings $ settings ;
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ class Webhook extends Component
1313{
1414 use AuthorizesRequests;
1515
16- public Team $ team ;
16+ public ? Team $ team = null ;
1717
1818 public WebhookNotificationSettings $ settings ;
1919
You can’t perform that action at this time.
0 commit comments