diff --git a/framework/core/src/Notification/NotificationSyncer.php b/framework/core/src/Notification/NotificationSyncer.php index b6b6f96e1..94d154893 100644 --- a/framework/core/src/Notification/NotificationSyncer.php +++ b/framework/core/src/Notification/NotificationSyncer.php @@ -37,21 +37,13 @@ class NotificationSyncer */ protected static $sentTo = []; - /** - * @var NotificationRepository - */ - protected $notifications; - /** * @var Queue */ protected $queue; - public function __construct( - NotificationRepository $notifications, - Queue $queue - ) { - $this->notifications = $notifications; + public function __construct(Queue $queue) + { $this->queue = $queue; }