Completed
Push — resets ( d2f77b...f5109b )
by Paul
04:44 queued 02:34
created
src/Common/Insert.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -160,7 +160,6 @@
 block discarded – undo
160 160
      *
161 161
      * @param string $col The column name.
162 162
      *
163
-     * @param mixed,...  $val Optional: a value to bind to the placeholder.
164 163
      *
165 164
      * @return self
166 165
      *
Please login to merge, or discard this patch.
src/Mysql/Insert.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,6 @@
 block discarded – undo
97 97
      *
98 98
      * @param string $col The column name.
99 99
      *
100
-     * @param mixed,... $val Optional: a value to bind to the placeholder.
101 100
      *
102 101
      * @return self
103 102
      *
Please login to merge, or discard this patch.
src/Common/Select.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
      *
267 267
      * @param string $alias The column to remove
268 268
      *
269
-     * @return null
269
+     * @return boolean
270 270
      *
271 271
      */
272 272
     public function removeCol($alias)
@@ -563,6 +563,9 @@  discard block
 block discarded – undo
563 563
         return $this->addJoin('        ' . $text);
564 564
     }
565 565
 
566
+    /**
567
+     * @param string $spec
568
+     */
566 569
     protected function addJoin($spec)
567 570
     {
568 571
         $from_key = ($this->from_key == -1) ? 0 : $this->from_key;
Please login to merge, or discard this patch.