Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | namespace CeculaSyncApiClient; |
| 3 | |
| 4 | interface SyncSmsInterface |
| 5 | { |
| 6 | public function sendSMS(string $text, array $recipients): Object; |
| 7 | |
| 8 | public function getSentMessageStatus(string $smsTrackingId): Object; |
| 9 | |
| 10 | public function getUnreadSMS(): array; |
| 11 | |
| 12 | public function setSMSAutoResponseText(string $text): Object; |
| 13 | } |