Passed
Push — master ( 0ca7b7...b6919e )
by diego
06:12 queued 02:48
created
src/Ifsnop/Mysqldump/Mysqldump.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1942,7 +1942,7 @@  discard block
 block discarded – undo
1942 1942
                 "Please check 'https://bugs.mysql.com/bug.php?id=14564'");
1943 1943
         }
1944 1944
         $procedureStmt = $row['Create Procedure'];
1945
-        if ( $this->dumpSettings['skip-definer'] ) {
1945
+        if ($this->dumpSettings['skip-definer']) {
1946 1946
             if ($procedureStmtReplaced = preg_replace(
1947 1947
                 '/^(CREATE)\s+('.self::DEFINER_RE.')?\s+(PROCEDURE\s.*)$/s',
1948 1948
                 '\1 \3',
@@ -1976,7 +1976,7 @@  discard block
 block discarded – undo
1976 1976
         $characterSetClient = $row['character_set_client'];
1977 1977
         $collationConnection = $row['collation_connection'];
1978 1978
         $sqlMode = $row['sql_mode'];
1979
-        if ( $this->dumpSettings['skip-definer'] ) {
1979
+        if ($this->dumpSettings['skip-definer']) {
1980 1980
             if ($functionStmtReplaced = preg_replace(
1981 1981
                 '/^(CREATE)\s+('.self::DEFINER_RE.')?\s+(FUNCTION\s.*)$/s',
1982 1982
                 '\1 \3',
@@ -2132,7 +2132,7 @@  discard block
 block discarded – undo
2132 2132
 
2133 2133
     public function start_transaction()
2134 2134
     {
2135
-        return "START TRANSACTION " .
2135
+        return "START TRANSACTION ".
2136 2136
             "/*!40100 WITH CONSISTENT SNAPSHOT */";
2137 2137
     }
2138 2138
 
Please login to merge, or discard this patch.