| Total Complexity | 4 |
| Total Lines | 52 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class Sns |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var SnsService |
||
| 12 | */ |
||
| 13 | protected $snsService; |
||
| 14 | |||
| 15 | 5 | public function __construct(SnsService $snsService) |
|
| 18 | 5 | } |
|
| 19 | |||
| 20 | /** |
||
| 21 | * @param string $destination Phone number as described by the E.164 format. |
||
| 22 | * @return \Aws\Result |
||
| 23 | * |
||
| 24 | * @throws AwsException |
||
| 25 | */ |
||
| 26 | public function send(SnsMessage $message, $destination) |
||
| 62 |