@@ -95,12 +95,12 @@ |
||
95 | 95 | |
96 | 96 | if (static::isMySQL($dbh)) { |
97 | 97 | // mysql mode |
98 | - return function ($identifier) { |
|
98 | + return function($identifier) { |
|
99 | 99 | return '`' . str_replace('`', '``', $identifier) . '`'; |
100 | 100 | }; |
101 | 101 | } else { |
102 | 102 | // standard sql mode |
103 | - return function ($identifier) { |
|
103 | + return function($identifier) { |
|
104 | 104 | return '"' . str_replace('"', '""', $identifier) . '"'; |
105 | 105 | }; |
106 | 106 | } |