| 1 |
<?php |
| 2 |
|
| 3 |
namespace IvyForms\Repository\Notification; |
| 4 |
|
| 5 |
// phpcs:disable PSR1.Files.SideEffects |
| 6 |
if (!defined('ABSPATH')) { |
| 7 |
exit; // Exit if accessed directly |
| 8 |
} |
| 9 |
|
| 10 |
use IvyForms\Repository\BaseRepositoryInterface; |
| 11 |
|
| 12 |
interface NotificationRepositoryInterface extends BaseRepositoryInterface |
| 13 |
{ |
| 14 |
/** |
| 15 |
* Get all notifications by ID. |
| 16 |
* |
| 17 |
* @param int $id |
| 18 |
* |
| 19 |
* @return array<mixed> |
| 20 |
*/ |
| 21 |
public function getAllById(int $id): array; |
| 22 |
/** |
| 23 |
* Get all active notifications. |
| 24 |
* |
| 25 |
* @return array<mixed> |
| 26 |
*/ |
| 27 |
public function getAllActiveById(int $id): array; |
| 28 |
} |
| 29 |
|