| Total Complexity | 1 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | abstract class AbstractOperation extends AbstractDynamoDbClientAware implements OperationInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Registers the DynamoDb client and Marshaler with this object. |
||
| 12 | * |
||
| 13 | * @param DynamoDbClient $client The DynamoDb client. |
||
| 14 | * @param Marshaler $marshaler The Marshaler. |
||
| 15 | */ |
||
| 16 | 42 | public function __construct(DynamoDbClient $client, Marshaler $marshaler) |
|
| 22 |