Passed
Pull Request — master (#211)
by
unknown
05:48 queued 03:11
created
src/Ifsnop/Mysqldump/Mysqldump.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1879,7 +1879,7 @@  discard block
 block discarded – undo
1879 1879
             $createTable = preg_replace($match, $replace, $createTable);
1880 1880
         }
1881 1881
 
1882
-        if ($this->dumpSettings['if-not-exists'] ) {
1882
+        if ($this->dumpSettings['if-not-exists']) {
1883 1883
                 $createTable = preg_replace('/^CREATE TABLE/', 'CREATE TABLE IF NOT EXISTS', $createTable);
1884 1884
         }
1885 1885
 
@@ -1982,7 +1982,7 @@  discard block
 block discarded – undo
1982 1982
         $characterSetClient = $row['character_set_client'];
1983 1983
         $collationConnection = $row['collation_connection'];
1984 1984
         $sqlMode = $row['sql_mode'];
1985
-        if ( $this->dumpSettings['skip-definer'] ) {
1985
+        if ($this->dumpSettings['skip-definer']) {
1986 1986
             if ($functionStmtReplaced = preg_replace(
1987 1987
                 '/^(CREATE)\s+('.self::DEFINER_RE.')?\s+(FUNCTION\s.*)$/s',
1988 1988
                 '\1 \3',
Please login to merge, or discard this patch.