20 lines
440 B
PHP
20 lines
440 B
PHP
<?php
|
|
|
|
namespace App\Repositories\Api\Access\Notification;
|
|
|
|
interface NotificationsInterface
|
|
{
|
|
public function notificationListing($data);
|
|
|
|
public function deleteNotification($id);
|
|
|
|
public function deleteAllNotifications();
|
|
|
|
public function pushNotificationRegister($request);
|
|
|
|
public function deleteUserToken($request);
|
|
|
|
public function deleteExistingDeviceToken($request);
|
|
|
|
public function getUnreadCounts();
|
|
} |