| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | final class DynamoDbClientFactory |
||
| 8 | { |
||
| 9 | private static $defaultOptions = [ |
||
| 10 | 'region' => 'us-west-2', |
||
| 11 | 'version' => 'latest', |
||
| 12 | 'endpoint' => 'http://localhost:8000', |
||
| 13 | 'credentials' => [ |
||
| 14 | 'key' => 'not-a-real-key', |
||
| 15 | 'secret' => 'not-a-real-secret', |
||
| 16 | ] |
||
| 17 | ]; |
||
| 18 | |||
| 19 | 42 | public static function factory(?array $options = []): DynamoDbClient |
|
| 27 |