| Total Complexity | 3 | 
| Total Lines | 40 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 17 | class UpdateQueryBuilder extends QueryBuilder | ||
| 18 | { | ||
| 19 | /** | ||
| 20 | * It inserts the new rows | ||
| 21 | * | ||
| 22 | * @param array $rows | ||
| 23 | * @return integer $lastInsertedId | ||
| 24 | * @throws Exception | ||
| 25 | * @author RN Kushwaha <[email protected]> | ||
| 26 | * @since v0.0.5 | ||
| 27 | */ | ||
| 28 | public function update($rows, $table) | ||
| 60 | 
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.