Passed
Push — master ( 7671ca...14da8a )
by Csaba
44s
created

Query   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 1
cbo 2
dl 0
loc 7
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A execute() 0 4 1
1
<?php
2
namespace Fathomminds\Rest\Database\DynamoDb;
3
4
use Aws\DynamoDb\DynamoDbClient;
5
use Aws\DynamoDb\Marshaler;
6
7
class Query extends DatabaseOperation
8
{
9 4
    protected function execute($query)
10
    {
11 4
        return $this->client->query($query);
12
    }
13
}
14