| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 88.89% |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class TransactionalSms |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * Auth key |
||
| 19 | * @var string $transAuthKey Transaction Auth key |
||
| 20 | */ |
||
| 21 | protected $transAuthKey; |
||
| 22 | 40 | public function __construct($authkey = null) |
|
| 25 | 40 | } |
|
| 26 | /** |
||
| 27 | * Send transactional SMS MSG91 Service |
||
| 28 | * @param int|string $mobileNumber |
||
| 29 | * @param array $data |
||
| 30 | * |
||
| 31 | * @return string |
||
| 32 | */ |
||
| 33 | 40 | public function sendTransactional($mobileNumber, $data) |
|
| 42 |