Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed #1022 #1083

Open
wants to merge 2 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion app/Notifications/DynamicNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@

use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;

class DynamicNotification extends Notification
class DynamicNotification extends Notification implements ShouldQueue
{
use Queueable;

Expand Down
7 changes: 3 additions & 4 deletions app/Notifications/InvoiceNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,16 @@
use App\Models\User;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Notification;
use LaravelDaily\Invoices\Invoice;

class InvoiceNotification extends Notification
class InvoiceNotification extends Notification implements ShouldQueue
{
use Queueable;

/**
* @var invoice
* * @var invoice
* * @var invoice
* @var Invoice
*/
private $invoice;

Expand Down
3 changes: 2 additions & 1 deletion app/Notifications/ReferralNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
use App\Settings\ReferralSettings;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;

class ReferralNotification extends Notification
class ReferralNotification extends Notification implements ShouldQueue
{
use Queueable;

Expand Down
3 changes: 2 additions & 1 deletion app/Notifications/ServerCreationError.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
use App\Models\Server;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;

class ServerCreationError extends Notification
class ServerCreationError extends Notification implements ShouldQueue
{
use Queueable;

Expand Down