Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | 1 | public function getSesClient() |
|
23 | { |
||
24 | //Send the message (which must be base 64 encoded): |
||
25 | 1 | return new SesClient([ |
|
26 | 1 | 'credentials' => new Credentials( |
|
27 | 1 | $this->uri->getUsername(), |
|
28 | 1 | $this->uri->getPassword() |
|
29 | 1 | ), |
|
30 | 1 | 'region' => $this->uri->getHost(), |
|
31 | 1 | 'version' => '2010-12-01' |
|
32 | 1 | ]); |
|
66 |