| 1 | <?php |
||
| 4 | class TwilioConfig |
||
| 5 | { |
||
| 6 | /** |
||
| 7 | * @var array |
||
| 8 | */ |
||
| 9 | private $config; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * TwilioConfig constructor. |
||
| 13 | * |
||
| 14 | * @param array $config |
||
| 15 | */ |
||
| 16 | public function __construct(array $config) |
||
| 20 | |||
| 21 | public function getAccountSid() |
||
| 25 | |||
| 26 | public function getAuthToken() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Get the from entity from config |
||
| 33 | */ |
||
| 34 | public function getFrom() |
||
| 38 | |||
| 39 | public function getAlphanumericSender() |
||
| 47 | |||
| 48 | public function getSmsParams() |
||
| 58 | } |