Completed
Push — master ( c02e16...8eb818 )
by Guillermo A.
02:37
created
examples/tables.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,6 +40,6 @@
 block discarded – undo
40 40
     // delete a table
41 41
     $this->useTable($tableName)->deleteTable();
42 42
 
43
-} catch(\Exception $ex) {
43
+} catch (\Exception $ex) {
44 44
     die($ex->getMessage());
45 45
 }
Please login to merge, or discard this patch.
src/Db/DynamoDb/DynamoDbAdapter.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -89,9 +89,9 @@
 block discarded – undo
89 89
         }
90 90
     }
91 91
 
92
-     /**
93
-     * {@inheritDoc}
94
-     */
92
+        /**
93
+         * {@inheritDoc}
94
+         */
95 95
     public function tableExists(): bool
96 96
     {
97 97
         $tables = $this->listTables();
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
         } catch (DynamoDbException $ex) {
58 58
             throw new DbException($ex->getMessage());
59 59
         } catch (InvalidArgumentException $ex) {
60
-            throw new DbException('Bad key schema: ' . $ex->getMessage());
60
+            throw new DbException('Bad key schema: '.$ex->getMessage());
61 61
         }
62 62
     }
63 63
 
Please login to merge, or discard this patch.