-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
General: Return PushNotificationStatus for broadcasts
- Loading branch information
1 parent
197dc51
commit f73151f
Showing
4 changed files
with
154 additions
and
10 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
src/Lunr/Vortex/PushNotificationBroadcastResponseInterface.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
|
||
/** | ||
* This file contains the PushNotificationBroadcastResponseInterface. | ||
* | ||
* SPDX-FileCopyrightText: Copyright 2024 Move Agency Group B.V., Zwolle, The Netherlands | ||
* SPDX-License-Identifier: MIT | ||
*/ | ||
|
||
namespace Lunr\Vortex; | ||
|
||
/** | ||
* Push notification Response interface. | ||
*/ | ||
interface PushNotificationBroadcastResponseInterface | ||
{ | ||
|
||
/** | ||
* Get notification delivery status for the broadcast. | ||
* | ||
* @return PushNotificationStatus Delivery status for the broadcast | ||
*/ | ||
public function get_broadcast_status(): PushNotificationStatus; | ||
|
||
} | ||
|
||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters