@@ -40,6 +40,6 @@ |
||
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 | } |
@@ -57,7 +57,7 @@ |
||
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 |
@@ -89,9 +89,9 @@ |
||
89 | 89 | } |
90 | 90 | } |
91 | 91 | |
92 | - /** |
|
93 | - * {@inheritDoc} |
|
94 | - */ |
|
92 | + /** |
|
93 | + * {@inheritDoc} |
|
94 | + */ |
|
95 | 95 | public function tableExists(string $tableName = ''): bool |
96 | 96 | { |
97 | 97 | $tableName = !empty($tableName) ? $tableName : $this->tableName; |