Skip to content

Commit

Permalink
ShouldQueue remove
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmetserefoglu committed Nov 4, 2020
1 parent bdac630 commit 695e022
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions app/Notifications/ResetPasswordNotify.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,11 @@
namespace App\Notifications;

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

/*
*
* Şifre Yenileme Linki Göndermek İçin Kullandığımız Sınıf
* Burada ShouldQueue sınıfını implement etmemiz bize mail göndermelerde işlemleri kuyruğa alarak işlem yapıyor olması
*/
class ResetPasswordNotify extends Notification implements ShouldQueue {

class ResetPasswordNotify extends Notification {
use Queueable;

protected $token;
Expand Down

0 comments on commit 695e022

Please sign in to comment.