Test Failed
Branch feature/dynamodb (3e8935)
by Csaba
02:57
created
clusterpoint-example.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -20,11 +20,11 @@
 block discarded – undo
20 20
 
21 21
 return [
22 22
     'default' => [
23
-      'host' => 'https://api-eu.clusterpoint.com/v4',
24
-      'account_id' => 'ACCOUNT_ID',
25
-      'username' => 'USERNAME',
26
-      'password' => 'PASSWORD',
27
-      'debug' => false,
23
+        'host' => 'https://api-eu.clusterpoint.com/v4',
24
+        'account_id' => 'ACCOUNT_ID',
25
+        'username' => 'USERNAME',
26
+        'password' => 'PASSWORD',
27
+        'debug' => false,
28 28
     ],
29 29
     'development' => [
30 30
         'host' => 'https://api-eu.clusterpoint.com/v4/',
Please login to merge, or discard this patch.
src/Database/DynamoDb/Resource.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -85,6 +85,9 @@  discard block
 block discarded – undo
85 85
         return $query;
86 86
     }
87 87
 
88
+    /**
89
+     * @param DynamoDbException $ex
90
+     */
88 91
     protected function throwAwsPostError($ex)
89 92
     {
90 93
         switch ($ex->getAwsErrorCode()) {
@@ -122,6 +125,9 @@  discard block
 block discarded – undo
122 125
         return $query;
123 126
     }
124 127
 
128
+    /**
129
+     * @param DynamoDbException $ex
130
+     */
125 131
     protected function throwAwsPutError($ex)
126 132
     {
127 133
         switch ($ex->getAwsErrorCode()) {
Please login to merge, or discard this patch.