Complex classes like Select often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Select, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 21 | class Select extends AbstractQuery implements SelectInterface, SubselectInterface |
||
| 22 | { |
||
| 23 | use WhereTrait; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * |
||
| 27 | * An array of union SELECT statements. |
||
| 28 | * |
||
| 29 | * @var array |
||
| 30 | * |
||
| 31 | */ |
||
| 32 | protected $union = array(); |
||
| 33 | |||
| 34 | /** |
||
| 35 | * |
||
| 36 | * Is this a SELECT FOR UPDATE? |
||
| 37 | * |
||
| 38 | * @var |
||
| 39 | * |
||
| 40 | */ |
||
| 41 | protected $for_update = false; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * |
||
| 45 | * The columns to be selected. |
||
| 46 | * |
||
| 47 | * @var array |
||
| 48 | * |
||
| 49 | */ |
||
| 50 | protected $cols = array(); |
||
| 51 | |||
| 52 | /** |
||
| 53 | * |
||
| 54 | * Select from these tables; includes JOIN clauses. |
||
| 55 | * |
||
| 56 | * @var array |
||
| 57 | * |
||
| 58 | */ |
||
| 59 | protected $from = array(); |
||
| 60 | |||
| 61 | /** |
||
| 62 | * |
||
| 63 | * The current key in the `$from` array. |
||
| 64 | * |
||
| 65 | * @var int |
||
| 66 | * |
||
| 67 | */ |
||
| 68 | protected $from_key = -1; |
||
| 69 | |||
| 70 | /** |
||
| 71 | * |
||
| 72 | * Tracks which JOIN clauses are attached to which FROM tables. |
||
| 73 | * |
||
| 74 | * @var array |
||
| 75 | * |
||
| 76 | */ |
||
| 77 | protected $join = array(); |
||
| 78 | |||
| 79 | /** |
||
| 80 | * |
||
| 81 | * GROUP BY these columns. |
||
| 82 | * |
||
| 83 | * @var array |
||
| 84 | * |
||
| 85 | */ |
||
| 86 | protected $group_by = array(); |
||
| 87 | |||
| 88 | /** |
||
| 89 | * |
||
| 90 | * The list of HAVING conditions. |
||
| 91 | * |
||
| 92 | * @var array |
||
| 93 | * |
||
| 94 | */ |
||
| 95 | protected $having = array(); |
||
| 96 | |||
| 97 | /** |
||
| 98 | * |
||
| 99 | * The page number to select. |
||
| 100 | * |
||
| 101 | * @var int |
||
| 102 | * |
||
| 103 | */ |
||
| 104 | protected $page = 0; |
||
| 105 | |||
| 106 | /** |
||
| 107 | * |
||
| 108 | * The number of rows per page. |
||
| 109 | * |
||
| 110 | * @var int |
||
| 111 | * |
||
| 112 | */ |
||
| 113 | protected $paging = 10; |
||
| 114 | |||
| 115 | /** |
||
| 116 | * |
||
| 117 | * Tracks table references to avoid duplicate identifiers. |
||
| 118 | * |
||
| 119 | * @var array |
||
| 120 | * |
||
| 121 | */ |
||
| 122 | protected $table_refs = array(); |
||
| 123 | |||
| 124 | /** |
||
| 125 | * |
||
| 126 | * Returns this query object as an SQL statement string. |
||
| 127 | * |
||
| 128 | * @return string An SQL statement string. |
||
| 129 | * |
||
| 130 | */ |
||
| 131 | 184 | public function getStatement() |
|
| 132 | { |
||
| 133 | 184 | $union = ''; |
|
| 134 | 184 | if (! empty($this->union)) { |
|
| 135 | 15 | $union = implode(PHP_EOL, $this->union) . PHP_EOL; |
|
| 136 | } |
||
| 137 | 184 | return $union . $this->build(); |
|
| 138 | } |
||
| 139 | |||
| 140 | /** |
||
| 141 | * |
||
| 142 | * Sets the number of rows per page. |
||
| 143 | * |
||
| 144 | * @param int $paging The number of rows to page at. |
||
| 145 | * |
||
| 146 | * @return $this |
||
| 147 | * |
||
| 148 | */ |
||
| 149 | 10 | public function setPaging($paging) |
|
| 150 | { |
||
| 151 | 10 | $this->paging = (int) $paging; |
|
| 152 | 10 | if ($this->page) { |
|
| 153 | 5 | $this->setPagingLimitOffset(); |
|
| 154 | } |
||
| 155 | 10 | return $this; |
|
| 156 | } |
||
| 157 | |||
| 158 | /** |
||
| 159 | * |
||
| 160 | * Gets the number of rows per page. |
||
| 161 | * |
||
| 162 | * @return int The number of rows per page. |
||
| 163 | * |
||
| 164 | */ |
||
| 165 | 10 | public function getPaging() |
|
| 169 | |||
| 170 | /** |
||
| 171 | * |
||
| 172 | * Makes the select FOR UPDATE (or not). |
||
| 173 | * |
||
| 174 | * @param bool $enable Whether or not the SELECT is FOR UPDATE (default |
||
| 175 | * true). |
||
| 176 | * |
||
| 177 | * @return $this |
||
| 178 | * |
||
| 179 | */ |
||
| 180 | 20 | public function forUpdate($enable = true) |
|
| 185 | |||
| 186 | /** |
||
| 187 | * |
||
| 188 | * Makes the select DISTINCT (or not). |
||
| 189 | * |
||
| 190 | * @param bool $enable Whether or not the SELECT is DISTINCT (default |
||
| 191 | * true). |
||
| 192 | * |
||
| 193 | * @return $this |
||
| 194 | * |
||
| 195 | */ |
||
| 196 | 16 | public function distinct($enable = true) |
|
| 201 | |||
| 202 | /** |
||
| 203 | * |
||
| 204 | * Is the select DISTINCT? |
||
| 205 | * |
||
| 206 | * @return bool |
||
| 207 | * |
||
| 208 | */ |
||
| 209 | 10 | public function isDistinct() |
|
| 213 | |||
| 214 | /** |
||
| 215 | * |
||
| 216 | * Adds columns to the query. |
||
| 217 | * |
||
| 218 | * Multiple calls to cols() will append to the list of columns, not |
||
| 219 | * overwrite the previous columns. |
||
| 220 | * |
||
| 221 | * @param array $cols The column(s) to add to the query. The elements can be |
||
| 222 | * any mix of these: `array("col", "col AS alias", "col" => "alias")` |
||
| 223 | * |
||
| 224 | * @return $this |
||
| 225 | * |
||
| 226 | */ |
||
| 227 | 224 | public function cols(array $cols) |
|
| 234 | |||
| 235 | /** |
||
| 236 | * |
||
| 237 | * Adds a column and alias to the columns to be selected. |
||
| 238 | * |
||
| 239 | * @param mixed $key If an integer, ignored. Otherwise, the column to be |
||
| 240 | * added. |
||
| 241 | * |
||
| 242 | * @param mixed $val If $key was an integer, the column to be added; |
||
| 243 | * otherwise, the column alias. |
||
| 244 | * |
||
| 245 | * @return null |
||
| 246 | * |
||
| 247 | */ |
||
| 248 | 224 | protected function addCol($key, $val) |
|
| 257 | |||
| 258 | /** |
||
| 259 | * |
||
| 260 | * Adds a column with an alias to the columns to be selected. |
||
| 261 | * |
||
| 262 | * @param string $spec The column specification: "col alias", |
||
| 263 | * "col AS alias", or something else entirely. |
||
| 264 | * |
||
| 265 | * @return null |
||
| 266 | * |
||
| 267 | */ |
||
| 268 | 214 | protected function addColWithAlias($spec) |
|
| 283 | |||
| 284 | /** |
||
| 285 | * |
||
| 286 | * Remove a column via its alias. |
||
| 287 | * |
||
| 288 | * @param string $alias The column to remove |
||
| 289 | * |
||
| 290 | * @return bool |
||
| 291 | * |
||
| 292 | */ |
||
| 293 | 15 | public function removeCol($alias) |
|
| 309 | |||
| 310 | /** |
||
| 311 | * |
||
| 312 | * Has the column or alias been added to the query? |
||
| 313 | * |
||
| 314 | * @param string $alias The column or alias to look for |
||
| 315 | * |
||
| 316 | * @return bool |
||
| 317 | * |
||
| 318 | */ |
||
| 319 | 5 | public function hasCol($alias) |
|
| 323 | |||
| 324 | /** |
||
| 325 | * |
||
| 326 | * Does the query have any columns in it? |
||
| 327 | * |
||
| 328 | * @return bool |
||
| 329 | * |
||
| 330 | */ |
||
| 331 | 5 | public function hasCols() |
|
| 335 | |||
| 336 | /** |
||
| 337 | * |
||
| 338 | * Returns a list of columns. |
||
| 339 | * |
||
| 340 | * @return array |
||
| 341 | * |
||
| 342 | */ |
||
| 343 | 15 | public function getCols() |
|
| 347 | |||
| 348 | /** |
||
| 349 | * |
||
| 350 | * Tracks table references. |
||
| 351 | * |
||
| 352 | * @param string $type FROM, JOIN, etc. |
||
| 353 | * |
||
| 354 | * @param string $spec The table and alias name. |
||
| 355 | * |
||
| 356 | * @return null |
||
| 357 | * |
||
| 358 | * @throws Exception when the reference has already been used. |
||
| 359 | * |
||
| 360 | */ |
||
| 361 | 149 | protected function addTableRef($type, $spec) |
|
| 377 | |||
| 378 | /** |
||
| 379 | * |
||
| 380 | * Adds a FROM element to the query; quotes the table name automatically. |
||
| 381 | * |
||
| 382 | * @param string $spec The table specification; "foo" or "foo AS bar". |
||
| 383 | * |
||
| 384 | * @return $this |
||
| 385 | * |
||
| 386 | */ |
||
| 387 | 139 | public function from($spec) |
|
| 392 | |||
| 393 | /** |
||
| 394 | * |
||
| 395 | * Adds a raw unquoted FROM element to the query; useful for adding FROM |
||
| 396 | * elements that are functions. |
||
| 397 | * |
||
| 398 | * @param string $spec The table specification, e.g. "function_name()". |
||
| 399 | * |
||
| 400 | * @return $this |
||
| 401 | * |
||
| 402 | */ |
||
| 403 | 5 | public function fromRaw($spec) |
|
| 408 | |||
| 409 | /** |
||
| 410 | * |
||
| 411 | * Adds to the $from property and increments the key count. |
||
| 412 | * |
||
| 413 | * @param string $spec The table specification. |
||
| 414 | * |
||
| 415 | * @return $this |
||
| 416 | * |
||
| 417 | */ |
||
| 418 | 149 | protected function addFrom($spec) |
|
| 424 | |||
| 425 | /** |
||
| 426 | * |
||
| 427 | * Adds an aliased sub-select to the query. |
||
| 428 | * |
||
| 429 | * @param string|Select $spec If a Select object, use as the sub-select; |
||
| 430 | * if a string, the sub-select string. |
||
| 431 | * |
||
| 432 | * @param string $name The alias name for the sub-select. |
||
| 433 | * |
||
| 434 | * @return $this |
||
| 435 | * |
||
| 436 | */ |
||
| 437 | 15 | public function fromSubSelect($spec, $name) |
|
| 444 | |||
| 445 | /** |
||
| 446 | * |
||
| 447 | * Formats a sub-SELECT statement, binding values from a Select object as |
||
| 448 | * needed. |
||
| 449 | * |
||
| 450 | * @param string|SelectInterface $spec A sub-SELECT specification. |
||
| 451 | * |
||
| 452 | * @param string $indent Indent each line with this string. |
||
| 453 | * |
||
| 454 | * @return string The sub-SELECT string. |
||
| 455 | * |
||
| 456 | */ |
||
| 457 | 25 | protected function subSelect($spec, $indent) |
|
| 467 | |||
| 468 | /** |
||
| 469 | * |
||
| 470 | * Adds a JOIN table and columns to the query. |
||
| 471 | * |
||
| 472 | * @param string $join The join type: inner, left, natural, etc. |
||
| 473 | * |
||
| 474 | * @param string $spec The table specification; "foo" or "foo AS bar". |
||
| 475 | * |
||
| 476 | * @param string $cond Join on this condition. |
||
| 477 | * |
||
| 478 | * @param array $bind Values to bind to ?-placeholders in the condition. |
||
| 479 | * |
||
| 480 | * @return $this |
||
| 481 | * |
||
| 482 | * @throws Exception |
||
| 483 | * |
||
| 484 | */ |
||
| 485 | 45 | public function join($join, $spec, $cond = null, array $bind = array()) |
|
| 494 | |||
| 495 | /** |
||
| 496 | * |
||
| 497 | * Fixes a JOIN condition to quote names in the condition and prefix it |
||
| 498 | * with a condition type ('ON' is the default and 'USING' is recognized). |
||
| 499 | * |
||
| 500 | * @param string $cond Join on this condition. |
||
| 501 | * |
||
| 502 | * @param array $bind Values to bind to ?-placeholders in the condition. |
||
| 503 | * |
||
| 504 | * @return string |
||
| 505 | * |
||
| 506 | */ |
||
| 507 | 55 | protected function fixJoinCondition($cond, array $bind) |
|
| 526 | |||
| 527 | /** |
||
| 528 | * |
||
| 529 | * Adds a INNER JOIN table and columns to the query. |
||
| 530 | * |
||
| 531 | * @param string $spec The table specification; "foo" or "foo AS bar". |
||
| 532 | * |
||
| 533 | * @param string $cond Join on this condition. |
||
| 534 | * |
||
| 535 | * @param array $bind Values to bind to ?-placeholders in the condition. |
||
| 536 | * |
||
| 537 | * @return $this |
||
| 538 | * |
||
| 539 | * @throws Exception |
||
| 540 | * |
||
| 541 | */ |
||
| 542 | 10 | public function innerJoin($spec, $cond = null, array $bind = array()) |
|
| 546 | |||
| 547 | /** |
||
| 548 | * |
||
| 549 | * Adds a LEFT JOIN table and columns to the query. |
||
| 550 | * |
||
| 551 | * @param string $spec The table specification; "foo" or "foo AS bar". |
||
| 552 | * |
||
| 553 | * @param string $cond Join on this condition. |
||
| 554 | * |
||
| 555 | * @param array $bind Values to bind to ?-placeholders in the condition. |
||
| 556 | * |
||
| 557 | * @return $this |
||
| 558 | * |
||
| 559 | * @throws Exception |
||
| 560 | * |
||
| 561 | */ |
||
| 562 | 10 | public function leftJoin($spec, $cond = null, array $bind = array()) |
|
| 566 | |||
| 567 | /** |
||
| 568 | * |
||
| 569 | * Adds a JOIN to an aliased subselect and columns to the query. |
||
| 570 | * |
||
| 571 | * @param string $join The join type: inner, left, natural, etc. |
||
| 572 | * |
||
| 573 | * @param string|Select $spec If a Select |
||
| 574 | * object, use as the sub-select; if a string, the sub-select |
||
| 575 | * command string. |
||
| 576 | * |
||
| 577 | * @param string $name The alias name for the sub-select. |
||
| 578 | * |
||
| 579 | * @param string $cond Join on this condition. |
||
| 580 | * |
||
| 581 | * @param array $bind Values to bind to ?-placeholders in the condition. |
||
| 582 | * |
||
| 583 | * @return $this |
||
| 584 | * |
||
| 585 | * @throws Exception |
||
| 586 | * |
||
| 587 | */ |
||
| 588 | 20 | public function joinSubSelect($join, $spec, $name, $cond = null, array $bind = array()) |
|
| 600 | |||
| 601 | /** |
||
| 602 | * |
||
| 603 | * Adds the JOIN to the right place, given whether or not a FROM has been |
||
| 604 | * specified yet. |
||
| 605 | * |
||
| 606 | * @param string $spec The JOIN clause. |
||
| 607 | * |
||
| 608 | * @return $this |
||
| 609 | * |
||
| 610 | */ |
||
| 611 | 55 | protected function addJoin($spec) |
|
| 617 | |||
| 618 | /** |
||
| 619 | * |
||
| 620 | * Adds grouping to the query. |
||
| 621 | * |
||
| 622 | * @param array $spec The column(s) to group by. |
||
| 623 | * |
||
| 624 | * @return $this |
||
| 625 | * |
||
| 626 | */ |
||
| 627 | 5 | public function groupBy(array $spec) |
|
| 634 | |||
| 635 | /** |
||
| 636 | * |
||
| 637 | * Adds a HAVING condition to the query by AND. If the condition has |
||
| 638 | * ?-placeholders, additional arguments to the method will be bound to |
||
| 639 | * those placeholders sequentially. |
||
| 640 | * |
||
| 641 | * @param string $cond The HAVING condition. |
||
| 642 | * |
||
| 643 | * @param array ...$bind arguments to bind to placeholders |
||
| 644 | * |
||
| 645 | * @return $this |
||
| 646 | * |
||
| 647 | */ |
||
| 648 | 10 | public function having($cond, ...$bind) |
|
| 653 | |||
| 654 | /** |
||
| 655 | * |
||
| 656 | * Adds a HAVING condition to the query by AND. If the condition has |
||
| 657 | * ?-placeholders, additional arguments to the method will be bound to |
||
| 658 | * those placeholders sequentially. |
||
| 659 | * |
||
| 660 | * @param string $cond The HAVING condition. |
||
| 661 | * |
||
| 662 | * @param array ...$bind arguments to bind to placeholders |
||
| 663 | * |
||
| 664 | * @return $this |
||
| 665 | * |
||
| 666 | * @see having() |
||
| 667 | * |
||
| 668 | */ |
||
| 669 | 5 | public function orHaving($cond, ...$bind) |
|
| 674 | |||
| 675 | /** |
||
| 676 | * |
||
| 677 | * Sets the limit and count by page number. |
||
| 678 | * |
||
| 679 | * @param int $page Limit results to this page number. |
||
| 680 | * |
||
| 681 | * @return $this |
||
| 682 | * |
||
| 683 | */ |
||
| 684 | 25 | public function page($page) |
|
| 690 | |||
| 691 | /** |
||
| 692 | * |
||
| 693 | * Updates the limit and offset values when changing pagination. |
||
| 694 | * |
||
| 695 | * @return null |
||
| 696 | * |
||
| 697 | */ |
||
| 698 | 25 | protected function setPagingLimitOffset() |
|
| 707 | |||
| 708 | /** |
||
| 709 | * |
||
| 710 | * Returns the page number being selected. |
||
| 711 | * |
||
| 712 | * @return int |
||
| 713 | * |
||
| 714 | */ |
||
| 715 | 5 | public function getPage() |
|
| 719 | |||
| 720 | /** |
||
| 721 | * |
||
| 722 | * Takes the current select properties and retains them, then sets |
||
| 723 | * UNION for the next set of properties. |
||
| 724 | * |
||
| 725 | * @return $this |
||
| 726 | * |
||
| 727 | */ |
||
| 728 | 10 | public function union() |
|
| 734 | |||
| 735 | /** |
||
| 736 | * |
||
| 737 | * Takes the current select properties and retains them, then sets |
||
| 738 | * UNION ALL for the next set of properties. |
||
| 739 | * |
||
| 740 | * @return $this |
||
| 741 | * |
||
| 742 | */ |
||
| 743 | 5 | public function unionAll() |
|
| 749 | |||
| 750 | /** |
||
| 751 | * |
||
| 752 | * Returns the LIMIT value. |
||
| 753 | * |
||
| 754 | * @return int |
||
| 755 | * |
||
| 756 | */ |
||
| 757 | 10 | public function getLimit() |
|
| 761 | |||
| 762 | /** |
||
| 763 | * |
||
| 764 | * Returns the OFFSET value. |
||
| 765 | * |
||
| 766 | * @return int |
||
| 767 | * |
||
| 768 | */ |
||
| 769 | 10 | public function getOffset() |
|
| 773 | |||
| 774 | /** |
||
| 775 | * |
||
| 776 | * Clears the current select properties; generally used after adding a |
||
| 777 | * union. |
||
| 778 | * |
||
| 779 | * @return null |
||
| 780 | * |
||
| 781 | */ |
||
| 782 | 15 | public function reset() |
|
| 796 | |||
| 797 | /** |
||
| 798 | * |
||
| 799 | * Resets the columns on the SELECT. |
||
| 800 | * |
||
| 801 | * @return $this |
||
| 802 | * |
||
| 803 | */ |
||
| 804 | 15 | public function resetCols() |
|
| 809 | |||
| 810 | /** |
||
| 811 | * |
||
| 812 | * Resets the FROM and JOIN clauses on the SELECT. |
||
| 813 | * |
||
| 814 | * @return $this |
||
| 815 | * |
||
| 816 | */ |
||
| 817 | 15 | public function resetTables() |
|
| 825 | |||
| 826 | /** |
||
| 827 | * |
||
| 828 | * Resets the WHERE clause on the SELECT. |
||
| 829 | * |
||
| 830 | * @return $this |
||
| 831 | * |
||
| 832 | */ |
||
| 833 | 15 | public function resetWhere() |
|
| 838 | |||
| 839 | /** |
||
| 840 | * |
||
| 841 | * Resets the GROUP BY clause on the SELECT. |
||
| 842 | * |
||
| 843 | * @return $this |
||
| 844 | * |
||
| 845 | */ |
||
| 846 | 15 | public function resetGroupBy() |
|
| 851 | |||
| 852 | /** |
||
| 853 | * |
||
| 854 | * Resets the HAVING clause on the SELECT. |
||
| 855 | * |
||
| 856 | * @return $this |
||
| 857 | * |
||
| 858 | */ |
||
| 859 | 15 | public function resetHaving() |
|
| 864 | |||
| 865 | /** |
||
| 866 | * |
||
| 867 | * Resets the ORDER BY clause on the SELECT. |
||
| 868 | * |
||
| 869 | * @return $this |
||
| 870 | * |
||
| 871 | */ |
||
| 872 | 15 | public function resetOrderBy() |
|
| 877 | |||
| 878 | /** |
||
| 879 | * |
||
| 880 | * Resets the UNION and UNION ALL clauses on the SELECT. |
||
| 881 | * |
||
| 882 | * @return $this |
||
| 883 | * |
||
| 884 | */ |
||
| 885 | public function resetUnions() |
||
| 890 | |||
| 891 | /** |
||
| 892 | * |
||
| 893 | * Builds this query object into a string. |
||
| 894 | * |
||
| 895 | * @return string |
||
| 896 | * |
||
| 897 | */ |
||
| 898 | 184 | protected function build() |
|
| 911 | |||
| 912 | /** |
||
| 913 | * |
||
| 914 | * Builds the columns clause. |
||
| 915 | * |
||
| 916 | * @return string |
||
| 917 | * |
||
| 918 | * @throws Exception when there are no columns in the SELECT. |
||
| 919 | * |
||
| 920 | */ |
||
| 921 | 184 | protected function buildCols() |
|
| 938 | |||
| 939 | /** |
||
| 940 | * |
||
| 941 | * Builds the FROM clause. |
||
| 942 | * |
||
| 943 | * @return string |
||
| 944 | * |
||
| 945 | */ |
||
| 946 | 179 | protected function buildFrom() |
|
| 961 | |||
| 962 | /** |
||
| 963 | * |
||
| 964 | * Builds the GROUP BY clause. |
||
| 965 | * |
||
| 966 | * @return string |
||
| 967 | * |
||
| 968 | */ |
||
| 969 | 179 | protected function buildGroupBy() |
|
| 977 | |||
| 978 | /** |
||
| 979 | * |
||
| 980 | * Builds the HAVING clause. |
||
| 981 | * |
||
| 982 | * @return string |
||
| 983 | * |
||
| 984 | */ |
||
| 985 | 179 | protected function buildHaving() |
|
| 993 | |||
| 994 | /** |
||
| 995 | * |
||
| 996 | * Builds the FOR UPDATE clause. |
||
| 997 | * |
||
| 998 | * @return string |
||
| 999 | * |
||
| 1000 | */ |
||
| 1001 | 179 | protected function buildForUpdate() |
|
| 1009 | |||
| 1010 | /** |
||
| 1011 | * |
||
| 1012 | * Sets a limit count on the query. |
||
| 1013 | * |
||
| 1014 | * @param int $limit The number of rows to select. |
||
| 1015 | * |
||
| 1016 | * @return $this |
||
| 1017 | * |
||
| 1018 | */ |
||
| 1019 | 30 | public function limit($limit) |
|
| 1028 | |||
| 1029 | /** |
||
| 1030 | * |
||
| 1031 | * Sets a limit offset on the query. |
||
| 1032 | * |
||
| 1033 | * @param int $offset Start returning after this many rows. |
||
| 1034 | * |
||
| 1035 | * @return $this |
||
| 1036 | * |
||
| 1037 | */ |
||
| 1038 | 30 | public function offset($offset) |
|
| 1047 | |||
| 1048 | /** |
||
| 1049 | * |
||
| 1050 | * Adds a column order to the query. |
||
| 1051 | * |
||
| 1052 | * @param array $spec The columns and direction to order by. |
||
| 1053 | * |
||
| 1054 | * @return $this |
||
| 1055 | * |
||
| 1056 | */ |
||
| 1057 | 5 | public function orderBy(array $spec) |
|
| 1061 | } |
||
| 1062 |