Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | namespace BuyerKiosk\SMS\TextMessageService; |
| 4 | |
| 5 | interface TextSenderInterface |
| 6 | { |
| 7 | /** |
| 8 | * Send an SMS message |
| 9 | * @param string $messageText The text message body |
| 10 | * @param string $phone The phone number to send to |
| 11 | * @return mixed |
| 12 | */ |
| 13 | public function sendText(string $messageText, string $phone); |
| 14 | } |