Completed
Push — intermixed-snippets ( 1a61e3 )
by Paul
01:52
created
src/Common/Select.php 1 patch
Doc Comments   +2 added lines, -12 removed lines patch added patch discarded remove patch
@@ -474,9 +474,8 @@  discard block
 block discarded – undo
474 474
      *
475 475
      * @param string $spec The table specification; "foo" or "foo AS bar".
476 476
      *
477
-     * @param string $cond Join on this condition.
477
+     * @param string[] $cond Join on this condition.
478 478
      *
479
-     * @param array $bind Values to bind to ?-placeholders in the condition.
480 479
      *
481 480
      * @return $this
482 481
      *
@@ -498,9 +497,8 @@  discard block
 block discarded – undo
498 497
      * Fixes a JOIN condition to quote names in the condition and prefix it
499 498
      * with a condition type ('ON' is the default and 'USING' is recognized).
500 499
      *
501
-     * @param string $cond Join on this condition.
500
+     * @param string[] $cond Join on this condition.
502 501
      *
503
-     * @param array $bind Values to bind to ?-placeholders in the condition.
504 502
      *
505 503
      * @return string
506 504
      *
@@ -530,9 +528,7 @@  discard block
 block discarded – undo
530 528
      *
531 529
      * @param string $spec The table specification; "foo" or "foo AS bar".
532 530
      *
533
-     * @param string $cond Join on this condition.
534 531
      *
535
-     * @param array $bind Values to bind to ?-placeholders in the condition.
536 532
      *
537 533
      * @return $this
538 534
      *
@@ -550,9 +546,7 @@  discard block
 block discarded – undo
550 546
      *
551 547
      * @param string $spec The table specification; "foo" or "foo AS bar".
552 548
      *
553
-     * @param string $cond Join on this condition.
554 549
      *
555
-     * @param array $bind Values to bind to ?-placeholders in the condition.
556 550
      *
557 551
      * @return $this
558 552
      *
@@ -576,9 +570,7 @@  discard block
 block discarded – undo
576 570
      *
577 571
      * @param string $name The alias name for the sub-select.
578 572
      *
579
-     * @param string $cond Join on this condition.
580 573
      *
581
-     * @param array $bind Values to bind to ?-placeholders in the condition.
582 574
      *
583 575
      * @return $this
584 576
      *
@@ -649,9 +641,7 @@  discard block
 block discarded – undo
649 641
      *
650 642
      * Adds a HAVING condition to the query by OR.
651 643
      *
652
-     * @param string $cond The HAVING condition.
653 644
      *
654
-     * @param array $bind arguments to bind to placeholders
655 645
      *
656 646
      * @return $this
657 647
      *
Please login to merge, or discard this patch.
src/Common/SelectInterface.php 1 patch
Doc Comments   -6 removed lines patch added patch discarded remove patch
@@ -171,7 +171,6 @@  discard block
 block discarded – undo
171 171
      *
172 172
      * @param string $spec The table specification; "foo" or "foo AS bar".
173 173
      *
174
-     * @param string $cond Join on this condition.
175 174
      *
176 175
      * @return $this
177 176
      *
@@ -184,9 +183,7 @@  discard block
 block discarded – undo
184 183
      *
185 184
      * @param string $spec The table specification; "foo" or "foo AS bar".
186 185
      *
187
-     * @param string $cond Join on this condition.
188 186
      *
189
-     * @param array $bind Values to bind to ?-placeholders in the condition.
190 187
      *
191 188
      * @return $this
192 189
      *
@@ -201,9 +198,7 @@  discard block
 block discarded – undo
201 198
      *
202 199
      * @param string $spec The table specification; "foo" or "foo AS bar".
203 200
      *
204
-     * @param string $cond Join on this condition.
205 201
      *
206
-     * @param array $bind Values to bind to ?-placeholders in the condition.
207 202
      *
208 203
      * @return $this
209 204
      *
@@ -224,7 +219,6 @@  discard block
 block discarded – undo
224 219
      *
225 220
      * @param string $name The alias name for the sub-select.
226 221
      *
227
-     * @param string $cond Join on this condition.
228 222
      *
229 223
      * @return $this
230 224
      *
Please login to merge, or discard this patch.
src/Common/WhereInterface.php 1 patch
Doc Comments   -4 removed lines patch added patch discarded remove patch
@@ -23,9 +23,7 @@  discard block
 block discarded – undo
23 23
      * ?-placeholders, additional arguments to the method will be bound to
24 24
      * those placeholders sequentially.
25 25
      *
26
-     * @param string $cond The WHERE condition.
27 26
      *
28
-     * @param array $bind Values to be bound to placeholders.
29 27
      *
30 28
      * @return $this
31 29
      *
@@ -38,9 +36,7 @@  discard block
 block discarded – undo
38 36
      * ?-placeholders, additional arguments to the method will be bound to
39 37
      * those placeholders sequentially.
40 38
      *
41
-     * @param string $cond The WHERE condition.
42 39
      *
43
-     * @param array $bind Values to be bound to placeholders.
44 40
      *
45 41
      * @return $this
46 42
      *
Please login to merge, or discard this patch.
src/Common/WhereTrait.php 1 patch
Doc Comments   -4 removed lines patch added patch discarded remove patch
@@ -21,9 +21,7 @@  discard block
 block discarded – undo
21 21
      *
22 22
      * Adds a WHERE condition to the query by AND.
23 23
      *
24
-     * @param string $cond The WHERE condition.
25 24
      *
26
-     * @param array $bind Values to be bound to placeholders
27 25
      *
28 26
      * @return $this
29 27
      *
@@ -40,9 +38,7 @@  discard block
 block discarded – undo
40 38
      * ?-placeholders, additional arguments to the method will be bound to
41 39
      * those placeholders sequentially.
42 40
      *
43
-     * @param string $cond The WHERE condition.
44 41
      *
45
-     * @param array $bind Values to be bound to placeholders
46 42
      *
47 43
      * @return $this
48 44
      *
Please login to merge, or discard this patch.