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 SyncCallInterface |
| 5 | { |
| 6 | public function dial(string $receiver): Object; |
| 7 | |
| 8 | public function getCallStatus(string $callTrackingId): Object; |
| 9 | |
| 10 | public function getNewMissedCalls(): array; |
| 11 | |
| 12 | public function saveCallAutoResponseText(string $text): Object; |
| 13 | } |