Skip to content

Commit 5e41f98

Browse files
committed
mail notification fix
1 parent 4d6feb6 commit 5e41f98

37 files changed

+37
-37
lines changed

app/Notifications/CustomPages/ResponseCopy.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class ResponseCopy extends Notification implements ShouldQueue
1111
{
1212
use Queueable;
13-
13+
protected $response;
1414
/**
1515
* Create a new notification instance.
1616
*

app/Notifications/CustomPages/ResponseReceived.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class ResponseReceived extends Notification implements ShouldQueue
1111
{
1212
use Queueable;
13-
13+
protected $response;
1414
/**
1515
* Create a new notification instance.
1616
*

app/Notifications/DataExportRequest.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
class DataExportRequest extends Notification implements ShouldQueue
1111
{
1212
use Queueable;
13-
13+
14+
protected $user, $json;
1415
/**
1516
* Create a new notification instance.
1617
*

app/Notifications/Discord/BanNotification.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class BanNotification extends Notification
1111
{
1212
use Queueable;
13-
13+
protected $user, $ban;
1414
/**
1515
* Create a new notification instance.
1616
*

app/Notifications/Discord/DiscordWelcome.php

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
class DiscordWelcome extends Notification
1313
{
1414
use Queueable;
15-
1615
/**
1716
* Create a new notification instance.
1817
*

app/Notifications/Events/NewControllerSignUp.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class NewControllerSignUp extends Notification implements ShouldQueue
1111
{
1212
use Queueable;
13-
13+
protected $signUp;
1414
/**
1515
* Create a new notification instance.
1616
*

app/Notifications/Feedback/NewFeedbackStaff.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class NewFeedbackStaff extends Notification implements ShouldQueue
1111
{
1212
use Queueable;
13-
13+
protected $submission;
1414
/**
1515
* Create a new notification instance.
1616
*

app/Notifications/MassEmail.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class MassEmail extends Notification implements ShouldQueue
1111
{
1212
use Queueable;
13-
13+
protected $user;
1414
/**
1515
* Create a new notification instance.
1616
*

app/Notifications/Network/ControllerInactive.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
class ControllerInactive extends Notification implements ShouldQueue
1212
{
1313
use Queueable;
14-
14+
protected $log;
1515
/**
1616
* Create a new notification instance.
1717
*

app/Notifications/Network/ControllerIsStudent.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
class ControllerIsStudent extends Notification implements ShouldQueue
1212
{
1313
use Queueable;
14-
14+
protected $log;
1515
/**
1616
* Create a new notification instance.
1717
*

app/Notifications/Network/ControllerNotCertified.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
class ControllerNotCertified extends Notification implements ShouldQueue
1212
{
1313
use Queueable;
14-
14+
protected $log;
1515
/**
1616
* Create a new notification instance.
1717
*

app/Notifications/Network/ControllerNotStaff.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
class ControllerNotStaff extends Notification implements ShouldQueue
1212
{
1313
use Queueable;
14-
14+
protected $log;
1515
/**
1616
* Create a new notification instance.
1717
*

app/Notifications/Network/OneWeekInactivityReminder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class OneWeekInactivityReminder extends Notification implements ShouldQueue
1111
{
1212
use Queueable;
13-
13+
protected $rosterMember, $cycle;
1414
/**
1515
* Create a new notification instance.
1616
*

app/Notifications/Network/TwoWeekInactivityReminder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class TwoWeekInactivityReminder extends Notification implements ShouldQueue
1111
{
1212
use Queueable;
13-
13+
protected $rosterMember, $cycle;
1414
/**
1515
* Create a new notification instance.
1616
*

app/Notifications/News.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
class News extends Notification implements ShouldQueue
1212
{
1313
use Queueable;
14-
14+
protected $user, $news;
1515
/**
1616
* Create a new notification instance.
1717
*

app/Notifications/News/Announcement.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
class Announcement extends Notification implements ShouldQueue
1212
{
1313
use Queueable;
14-
14+
protected $user, $announcement;
1515
/**
1616
* Create a new notification instance.
1717
*

app/Notifications/Roster/RemovedFromRoster.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class RemovedFromRoster extends Notification implements ShouldQueue
1111
{
1212
use Queueable;
13-
13+
protected $user;
1414
/**
1515
* Create a new notification instance.
1616
*

app/Notifications/Roster/RosterStatusChanged.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class RosterStatusChanged extends Notification implements ShouldQueue
1111
{
1212
use Queueable;
13-
13+
protected $rosterMember;
1414
/**
1515
* Create a new notification instance.
1616
*

app/Notifications/Training/Applications/ApplicationAcceptedApplicant.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
class ApplicationAcceptedApplicant extends Notification implements ShouldQueue
1414
{
1515
use Queueable;
16-
16+
protected $application;
1717
/**
1818
* Create a new notification instance.
1919
*

app/Notifications/Training/Applications/ApplicationAcceptedStaff.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
class ApplicationAcceptedStaff extends Notification implements ShouldQueue
1212
{
1313
use Queueable;
14-
14+
protected $application;
1515
/**
1616
* Create a new notification instance.
1717
*

app/Notifications/Training/Applications/ApplicationRejectedApplicant.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
class ApplicationRejectedApplicant extends Notification implements ShouldQueue
1414
{
1515
use Queueable;
16-
16+
protected $application;
1717
/**
1818
* Create a new notification instance.
1919
*

app/Notifications/Training/Applications/ApplicationWithdrawnStaff.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
class ApplicationWithdrawnStaff extends Notification implements ShouldQueue
1212
{
1313
use Queueable;
14-
14+
protected $application;
1515
/**
1616
* Create a new notification instance.
1717
*

app/Notifications/Training/Applications/NewApplicationStaff.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
class NewApplicationStaff extends Notification implements ShouldQueue
1212
{
1313
use Queueable;
14-
14+
protected $application;
1515
/**
1616
* Create a new notification instance.
1717
*

app/Notifications/Training/Applications/NewCommentApplicant.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
class NewCommentApplicant extends Notification implements ShouldQueue
1515
{
1616
use Queueable;
17-
17+
protected $application, $comment;
1818
/**
1919
* Create a new notification instance.
2020
*

app/Notifications/Training/Applications/NewCommentStaff.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
class NewCommentStaff extends Notification implements ShouldQueue
1313
{
1414
use Queueable;
15-
15+
protected $application, $comment;
1616
/**
1717
* Create a new notification instance.
1818
*

app/Notifications/Training/Instructing/NewSessionScheduledStudent.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
class NewSessionScheduledStudent extends Notification implements ShouldQueue
1414
{
1515
use Queueable;
16-
16+
protected $session, $type;
1717
/**
1818
* Create a new notification instance.
1919
*

app/Notifications/Training/Instructing/Session24HrReminder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
class Session24HrReminder extends Notification implements ShouldQueue
1414
{
1515
use Queueable;
16-
16+
protected $session, $type;
1717
/**
1818
* Create a new notification instance.
1919
*

app/Notifications/Training/Instructing/SessionAssignedToYou.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class SessionAssignedToYou extends Notification implements ShouldQueue
1111
{
1212
use Queueable;
13-
13+
protected $session, $type;
1414
/**
1515
* Create a new notification instance.
1616
*

app/Notifications/Training/Instructing/SessionCancelled.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
class SessionCancelled extends Notification implements ShouldQueue
1414
{
1515
use Queueable;
16-
16+
protected $session, $type;
1717
/**
1818
* Create a new notification instance.
1919
*

app/Notifications/Training/Instructing/SessionScheduledTimeChanged.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class SessionScheduledTimeChanged extends Notification implements ShouldQueue
1111
{
1212
use Queueable;
13-
13+
protected $session, $type;
1414
/**
1515
* Create a new notification instance.
1616
*

app/Notifications/Training/Instructing/StudentAssignedToYou.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class StudentAssignedToYou extends Notification implements ShouldQueue
1111
{
1212
use Queueable;
13-
13+
protected $student;
1414
/**
1515
* Create a new notification instance.
1616
*

app/Notifications/Training/Instructing/StudentRecommendedForAssessment.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class StudentRecommendedForAssessment extends Notification implements ShouldQueue
1111
{
1212
use Queueable;
13-
13+
protected $student, $instructor;
1414
/**
1515
* Create a new notification instance.
1616
*

app/Notifications/Training/Instructing/StudentRecommendedForSoloCert.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class StudentRecommendedForSoloCert extends Notification implements ShouldQueue
1111
{
1212
use Queueable;
13-
13+
protected $student, $instructor;
1414
/**
1515
* Create a new notification instance.
1616
*

app/Notifications/Training/SoloCertifications/SoloCertExpiringStaff.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class SoloCertExpiringStaff extends Notification implements ShouldQueue
1111
{
1212
use Queueable;
13-
13+
protected $cert;
1414
/**
1515
* Create a new notification instance.
1616
*

app/Notifications/Training/SoloCertifications/SoloCertExpiringUser.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
class SoloCertExpiringUser extends Notification implements ShouldQueue
1414
{
1515
use Queueable;
16-
16+
protected $cert;
1717
/**
1818
* Create a new notification instance.
1919
*

app/Notifications/Training/SoloCertifications/SoloCertGranted.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
class SoloCertGranted extends Notification implements ShouldQueue
1414
{
1515
use Queueable;
16-
16+
protected $cert;
1717
/**
1818
* Create a new notification instance.
1919
*

app/Notifications/WelcomeNewUser.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
class WelcomeNewUser extends Notification implements ShouldQueue
1212
{
1313
use Queueable;
14-
14+
protected $user;
1515
/**
1616
* Create a new notification instance.
1717
*

0 commit comments

Comments
 (0)