| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | 17 | public function __construct(array $options = []) |
|
| 17 | { |
||
| 18 | 17 | if (empty($options)) { |
|
| 19 | $options = [ |
||
| 20 | 17 | 'region' => 'us-west-2', |
|
| 21 | 'version' => 'latest', |
||
| 22 | 'endpoint' => 'http://localhost:8000', |
||
| 23 | 'credentials' => [ |
||
| 24 | 'key' => 'not-a-real-key', |
||
| 25 | 'secret' => 'not-a-real-secret', |
||
| 26 | ], |
||
| 27 | ]; |
||
| 28 | } |
||
| 29 | 17 | parent::__construct($options); |
|
| 30 | 17 | } |
|
| 32 |