2022-06-13 12:37:24 -03:00

16 lines
341 B
PHP

<?php
namespace App\Repositories\Notifications;
use App\Models\Notifications;
use App\Repositories\AbstractRepository;
class NotificationRepository extends AbstractRepository implements NotificationContractInterface
{
public function __construct(Notifications $notification)
{
parent::__construct($notification);
}
}