Skip to content

Commit

Permalink
remove implements from class declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
MrSuddenJoy committed Jun 17, 2024
1 parent 668da53 commit 50e5f55
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
4 changes: 1 addition & 3 deletions app/Notifications/FlagCreatedNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,12 @@
use Coyote\Services\Notification\Notification;
use Coyote\User;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Channels\BroadcastChannel;
use Illuminate\Notifications\Messages\BroadcastMessage;
use NotificationChannels\WebPush\WebPushChannel;
use NotificationChannels\WebPush\WebPushMessage;

class FlagCreatedNotification extends Notification implements ShouldQueue, ShouldBroadcast
class FlagCreatedNotification extends Notification
{
use Queueable;

Expand Down
4 changes: 1 addition & 3 deletions app/Notifications/PmCreatedNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,11 @@
use Coyote\Pm;
use Coyote\Services\Notification\Notification;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\BroadcastMessage;
use Illuminate\Notifications\Messages\MailMessage;
use NotificationChannels\WebPush\WebPushMessage;

class PmCreatedNotification extends Notification implements ShouldQueue, ShouldBroadcast
class PmCreatedNotification extends Notification
{
use Queueable;

Expand Down
3 changes: 1 addition & 2 deletions app/Notifications/ResetPasswordNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@

namespace Coyote\Notifications;

use Illuminate\Notifications\Notification;
use Illuminate\Notifications\Messages\MailMessage;

class ResetPasswordNotification extends Notification
class ResetPasswordNotification extends \Coyote\Services\Notification\Notification
{
/**
* The password reset token.
Expand Down

0 comments on commit 50e5f55

Please sign in to comment.