| Total Complexity | 3 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | class Sms77Io extends AProvider { |
||
| 23 | public const SCHEMA = [ |
||
| 24 | 'name' => 'sms77.io', |
||
| 25 | 'fields' => [ |
||
| 26 | ['field' => 'api_key', 'prompt' => 'Please enter your sms77.io API key:'], |
||
| 27 | ], |
||
| 28 | ]; |
||
| 29 | private IClient $client; |
||
| 30 | |||
| 31 | public function __construct( |
||
| 32 | IClientService $clientService, |
||
| 33 | ) { |
||
| 34 | $this->client = $clientService->newClient(); |
||
| 35 | } |
||
| 36 | |||
| 37 | #[\Override] |
||
| 51 | } |
||
| 52 | } |
||
| 54 |