1 | <?php |
||
8 | abstract class Driver implements SendsSms |
||
9 | { |
||
10 | protected $config = []; |
||
11 | |||
12 | abstract public function searchNumber(PhoneSearchParams $search); |
||
15 | |||
16 | /** |
||
17 | * Searches for a number and then purchases the first one it finds |
||
18 | * @param array $search Array of search options |
||
19 | * @return \LeadThread\Sms\Responses\Response |
||
20 | */ |
||
21 | public function searchAndBuyNumber(PhoneSearchParams $search) |
||
26 | } |
||
27 |