Completed
Push — master ( 04e1cf...739024 )
by Klochok
05:32
created
src/AbstractQueryBuilder.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -137,6 +137,10 @@  discard block
 block discarded – undo
137 137
         return $this->createRequest($query);
138 138
     }
139 139
 
140
+    /**
141
+     * @param string $action
142
+     * @param string $table
143
+     */
140 144
     public function createQuery($action, $table, array $options = [])
141 145
     {
142 146
         $class = $this->db->queryClass;
@@ -287,6 +291,9 @@  discard block
 block discarded – undo
287 291
         return [$key . '_' . $operator => reset($operands)];
288 292
     }
289 293
 
294
+    /**
295
+     * @param \Countable $columns
296
+     */
290 297
     protected function buildCompositeInCondition($operator, $columns, $values)
291 298
     {
292 299
         throw new NotSupportedException('composite in is not supported by HiArt.');
Please login to merge, or discard this patch.