Completed
Push — master ( c2ad7f...7da5cb )
by Gabriel
01:32
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 instanceof PDOStatement)) {
54
+        if (!($stmt instanceof PDOStatement)) {
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 === false) {
173
+        if ($stream === false) {
174 174
             throw new RuntimeException("Could not read provided file");
175 175
         }
176 176
         
Please login to merge, or discard this patch.