| Total Complexity | 1 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 7 | class MySQLSelectQuery extends SelectQuery |
||
| 8 | { |
||
| 9 | const CALC_FOUND_ROWS = "SQL_CALC_FOUND_ROWS"; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * Applies the SQL_CALC_FOUND_ROWS flag to the query. |
||
| 13 | * |
||
| 14 | * @link http://dev.mysql.com/doc/refman/5.7/en/information-functions.html#function_found-rows |
||
| 15 | * |
||
| 16 | * @return $this |
||
| 17 | */ |
||
| 18 | 1 | public function calcFoundRows(): static |
|
| 25 |