@@ -179,7 +179,7 @@ |
||
| 179 | 179 | $start = implode('?', array_slice($parts, 0, $pos)); |
| 180 | 180 | $end = implode('?', array_slice($parts, $pos)); |
| 181 | 181 | |
| 182 | - $this->sql = $start . $qs . $end; |
|
| 182 | + $this->sql = $start . $qs . $end; |
|
| 183 | 183 | $this->extendedBy += $fixedParamCount - 1; |
| 184 | 184 | } |
| 185 | 185 | |
@@ -30,13 +30,13 @@ |
||
| 30 | 30 | |
| 31 | 31 | $this->sut = new QueryBuilder(); |
| 32 | 32 | |
| 33 | - $dns = sprintf( |
|
| 33 | + $dns = sprintf( |
|
| 34 | 34 | 'mysql:dbname=%s;host=%s', |
| 35 | 35 | getenv('MYSQL_DATABASE'), |
| 36 | 36 | 'mysql' |
| 37 | 37 | ); |
| 38 | 38 | $username = getenv('MYSQL_USER'); |
| 39 | - $password =getenv('MYSQL_PASSWORD'); |
|
| 39 | + $password = getenv('MYSQL_PASSWORD'); |
|
| 40 | 40 | $options = null; |
| 41 | 41 | |
| 42 | 42 | $this->pdo = new PDO($dns, $username, $password, $options); |
@@ -29,7 +29,7 @@ |
||
| 29 | 29 | |
| 30 | 30 | $this->sut = new QueryBuilder(); |
| 31 | 31 | |
| 32 | - $dns = sprintf( |
|
| 32 | + $dns = sprintf( |
|
| 33 | 33 | 'pgsql:dbname=%s;host=%s', |
| 34 | 34 | getenv('POSTGRES_DB'), |
| 35 | 35 | 'postgres' |