@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | } |
199 | 199 | |
200 | 200 | // If no include-views is passed in, dump the same views as tables, mimic mysqldump behaviour. |
201 | - if ( ! isset( $dumpSettings['include-views'] ) ) { |
|
201 | + if (!isset($dumpSettings['include-views'])) { |
|
202 | 202 | $this->dumpSettings['include-views'] = $this->dumpSettings['include-tables']; |
203 | 203 | } |
204 | 204 | |
@@ -1945,7 +1945,7 @@ discard block |
||
1945 | 1945 | "Please check 'https://bugs.mysql.com/bug.php?id=14564'"); |
1946 | 1946 | } |
1947 | 1947 | $procedureStmt = $row['Create Procedure']; |
1948 | - if ( $this->dumpSettings['skip-definer'] ) { |
|
1948 | + if ($this->dumpSettings['skip-definer']) { |
|
1949 | 1949 | if ($procedureStmtReplaced = preg_replace( |
1950 | 1950 | '/^(CREATE)\s+('.self::DEFINER_RE.')?\s+(PROCEDURE\s.*)$/s', |
1951 | 1951 | '\1 \3', |
@@ -1979,7 +1979,7 @@ discard block |
||
1979 | 1979 | $characterSetClient = $row['character_set_client']; |
1980 | 1980 | $collationConnection = $row['collation_connection']; |
1981 | 1981 | $sqlMode = $row['sql_mode']; |
1982 | - if ( $this->dumpSettings['skip-definer'] ) { |
|
1982 | + if ($this->dumpSettings['skip-definer']) { |
|
1983 | 1983 | if ($functionStmtReplaced = preg_replace( |
1984 | 1984 | '/^(CREATE)\s+('.self::DEFINER_RE.')?\s+(FUNCTION\s.*)$/s', |
1985 | 1985 | '\1 \3', |
@@ -2135,7 +2135,7 @@ discard block |
||
2135 | 2135 | |
2136 | 2136 | public function start_transaction() |
2137 | 2137 | { |
2138 | - return "START TRANSACTION " . |
|
2138 | + return "START TRANSACTION ". |
|
2139 | 2139 | "/*!40100 WITH CONSISTENT SNAPSHOT */"; |
2140 | 2140 | } |
2141 | 2141 |