16 lines
329 B
PHP
16 lines
329 B
PHP
<?php
|
|
|
|
namespace App\Repositories;
|
|
|
|
use App\Core\Database;
|
|
use App\Entities\Notification;
|
|
|
|
class NotificationRepository extends BaseRepository
|
|
{
|
|
// Add your repository methods here
|
|
public function __construct(Database $database)
|
|
{
|
|
parent::__construct($database, "notifications", Notification::class);
|
|
}
|
|
}
|