@@ -582,7 +582,7 @@ public function rawQueryValue($query, $bindParams = null)
582
582
* A method to perform select query
583
583
*
584
584
* @param string $query Contains a user-provided select query.
585
- * @param int|array $numRows Array to define SQL limit in format Array ($count , $offset )
585
+ * @param int|array $numRows Array to define SQL limit in format Array ($offset , $count )
586
586
*
587
587
* @return array Contains the returned rows from the query.
588
588
*/
@@ -654,7 +654,7 @@ public function withTotalCount()
654
654
* A convenient SELECT * function.
655
655
*
656
656
* @param string $tableName The name of the database table to work with.
657
- * @param int|array $numRows Array to define SQL limit in format Array ($count , $offset )
657
+ * @param int|array $numRows Array to define SQL limit in format Array ($offset , $count )
658
658
* or only $count
659
659
* @param string $columns Desired columns
660
660
*
@@ -858,7 +858,7 @@ public function update($tableName, $tableData, $numRows = null)
858
858
* Delete query. Call the "where" method first.
859
859
*
860
860
* @param string $tableName The name of the database table to work with.
861
- * @param int|array $numRows Array to define SQL limit in format Array ($count , $offset )
861
+ * @param int|array $numRows Array to define SQL limit in format Array ($offset , $count )
862
862
* or only $count
863
863
*
864
864
* @return bool Indicates success. 0 or 1.
@@ -1474,7 +1474,7 @@ private function _buildInsert($tableName, $insertData, $operation)
1474
1474
* any passed update data, and the desired rows.
1475
1475
* It then builds the SQL query.
1476
1476
*
1477
- * @param int|array $numRows Array to define SQL limit in format Array ($count , $offset )
1477
+ * @param int|array $numRows Array to define SQL limit in format Array ($offset , $count )
1478
1478
* or only $count
1479
1479
* @param array $tableData Should contain an array of data for updating the database.
1480
1480
*
@@ -1868,7 +1868,7 @@ protected function _buildOrderBy()
1868
1868
/**
1869
1869
* Abstraction method that will build the LIMIT part of the WHERE statement
1870
1870
*
1871
- * @param int|array $numRows Array to define SQL limit in format Array ($count , $offset )
1871
+ * @param int|array $numRows Array to define SQL limit in format Array ($offset , $count )
1872
1872
* or only $count
1873
1873
*
1874
1874
* @return void
0 commit comments