Total Complexity | 4 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class SesSdkTransportConfig |
||
15 | { |
||
16 | /** |
||
17 | * @var callable |
||
18 | */ |
||
19 | private $credentials; |
||
20 | |||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | private $region; |
||
25 | |||
26 | /** |
||
27 | * @var array |
||
28 | */ |
||
29 | private $options = []; |
||
30 | |||
31 | public function __construct(callable $credentials, string $region, array $options = []) |
||
36 | } |
||
37 | |||
38 | public function getCredentials(): callable |
||
39 | { |
||
40 | return $this->credentials; |
||
41 | } |
||
42 | |||
43 | public function getRegion(): string |
||
46 | } |
||
47 | |||
48 | public function getOptions(): array |
||
51 | } |
||
52 | } |
||
53 |