@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | { |
| 76 | 76 | $this->setDic($dic); |
| 77 | 77 | $this->platform = $dic['Yapeal.Sql.platform']; |
| 78 | - $this->queriesDir = $dic['Yapeal.Sql.dir'] . 'queries/'; |
|
| 78 | + $this->queriesDir = $dic['Yapeal.Sql.dir'].'queries/'; |
|
| 79 | 79 | } |
| 80 | 80 | /** |
| 81 | 81 | * @param string $name |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | } |
| 105 | 105 | return $this->processSql($fileName, $sql, $arguments); |
| 106 | 106 | } |
| 107 | - $mess = 'Unknown method ' . $name; |
|
| 107 | + $mess = 'Unknown method '.$name; |
|
| 108 | 108 | throw new \BadMethodCallException($mess); |
| 109 | 109 | } |
| 110 | 110 | /** |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | $replacements = $this->getReplacements(); |
| 121 | 121 | $replacements['{tableName}'] = $tableName; |
| 122 | 122 | $replacements['{columnNames}'] = implode('","', $columnNameList); |
| 123 | - $rowPrototype = '(' . implode(',', array_fill(0, count($columnNameList), '?')) . ')'; |
|
| 123 | + $rowPrototype = '('.implode(',', array_fill(0, count($columnNameList), '?')).')'; |
|
| 124 | 124 | $replacements['{rowset}'] = implode(',', array_fill(0, $rowCount, $rowPrototype)); |
| 125 | 125 | $updates = []; |
| 126 | 126 | foreach ($columnNameList as $column) { |