@@ -1879,7 +1879,7 @@ discard block |
||
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 |
||
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', |