Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
28 | 1 | public function getSesClient() |
|
29 | { |
||
30 | //Send the message (which must be base 64 encoded): |
||
31 | 1 | return new SesClient([ |
|
32 | 1 | 'credentials' => new Credentials( |
|
33 | 1 | $this->uri->getUsername(), |
|
34 | 1 | $this->uri->getPassword() |
|
35 | ), |
||
36 | 1 | 'region' => $this->uri->getHost(), |
|
37 | 1 | 'version' => '2010-12-01' |
|
38 | ]); |
||
39 | } |
||
40 | |||
70 |