| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Lines | 14 |
| Ratio | 100 % |
| Tests | 10 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | 1 | public function __invoke(array $options) |
|
| 18 | { |
||
| 19 | 1 | $client = $this->getService($options['client'] ?? null); |
|
| 20 | 1 | $table = (string) ($options['table'] ?? null); |
|
| 21 | 1 | $level = (int) ($options['level'] ?? Logger::DEBUG); |
|
| 22 | 1 | $bubble = (bool) ($options['bubble'] ?? true); |
|
| 23 | |||
| 24 | 1 | return new DynamoDbHandler( |
|
| 25 | 1 | $client, |
|
| 26 | 1 | $table, |
|
| 27 | 1 | $level, |
|
| 28 | 1 | $bubble |
|
| 29 | ); |
||
| 30 | } |
||
| 31 | } |
||
| 32 |