Skip to content
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 src/Channels/DatabaseChannel.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
namespace Digitalcloud\ReactiveNotification\Channels;

use Illuminate\Notifications\Notification;
use Illuminate\Notifications\Channels\DatabaseChannel as BaseDatabaseChannel;

class DatabaseChannel extends Illuminate\Notifications\Channels\DatabaseChannel
class DatabaseChannel extends BaseDatabaseChannel
{
/**
* Send the given notification.
Expand Down
3 changes: 2 additions & 1 deletion src/Traits/Notifiable.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
namespace Digitalcloud\ReactiveNotification\Traits;

use Digitalcloud\ReactiveNotification\Models\DatabaseNotification;
use Illuminate\Notifications\Notifiable as BaseNotifiable;

trait Notifiable
{
use Illuminate\Notifications\Notifiable;
use BaseNotifiable;

public function notifications()
{
Expand Down