Completed
Push — master ( 195bcc...c2ad7f )
by Gabriel
01:56
created
src/TableDataDumper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
 
52 52
         $stmt = $db->prepare($select);
53 53
 
54
-        if(!$stmt) {
54
+        if (!$stmt) {
55 55
             throw new RuntimeException("Error occured preparing SELECT statement");
56 56
         }
57 57
 
Please login to merge, or discard this patch.
src/SQLDumper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -170,7 +170,7 @@
 block discarded – undo
170 170
     {
171 171
         $stream = @fopen($filename, 'w');
172 172
 
173
-        if(!$stream) {
173
+        if (!$stream) {
174 174
             throw new RuntimeException("Could not read provided file");
175 175
         }
176 176
         
Please login to merge, or discard this patch.