Completed
Push — master ( 3fc402...ee9403 )
by Guillermo A.
02:19
created
src/DynamoDb/Operation/CreateTableOperation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -246,7 +246,7 @@
 block discarded – undo
246 246
         } catch (DynamoDbException $ex) {
247 247
             throw new Exception($ex->getMessage());
248 248
         } catch (InvalidArgumentException $ex) {
249
-            throw new Exception('Bad key schema: ' . $ex->getMessage());
249
+            throw new Exception('Bad key schema: '.$ex->getMessage());
250 250
         }
251 251
     }
252 252
 }
Please login to merge, or discard this patch.
src/DynamoDb/Operation/DeleteTableOperation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
         } catch (DynamoDbException $ex) {
25 25
             throw new Exception($ex->getMessage());
26 26
         } catch (InvalidArgumentException $ex) {
27
-            throw new Exception('Bad key schema: ' . $ex->getMessage());
27
+            throw new Exception('Bad key schema: '.$ex->getMessage());
28 28
         }
29 29
     }
30 30
 }
Please login to merge, or discard this patch.