PluginProbe
The Innovative Form Builder – IvyForms / 0.8
The Innovative Form Builder – IvyForms v0.8
1.4.1 1.4 trunk 0.1.2 0.2 0.2.1 0.3 0.3.1 0.4 0.5 0.6 0.6.1 0.6.1-backup 0.6.1.1 0.7 0.8 0.8.1 0.8.2 0.9 0.9.1 1.0 1.1 1.1.1 1.2 1.3
ivyforms / backend / src / Repository / Notification / NotificationRepositoryInterface.php

NotificationRepositoryInterface.php in The Innovative Form Builder – IvyForms 0.8, at backend/src/Repository/Notification/NotificationRepositoryInterface.php

29 lines 595 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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