Completed
Push — master ( 4a905b...82874d )
by Michael
02:55
created
lib/Sql/CommonSqlQueries.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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) {
Please login to merge, or discard this patch.