Total Complexity | 5 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class Send extends Response |
||
14 | { |
||
15 | const URI = 'email/send'; |
||
16 | |||
17 | /** @var Client */ |
||
18 | private $client; |
||
19 | |||
20 | public function __construct(Client $client) |
||
21 | { |
||
22 | $this->client = $client; |
||
23 | } |
||
24 | |||
25 | public function handle(array $params = [], $muiltipartOption = false) |
||
32 | } |
||
33 | |||
34 | protected function transform(array $params, $muiltipartOption) |
||
50 | } |
||
51 | } |
||
52 |