| 1 | <?php |
||
| 12 | class Processor |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Process the results of a "select" query. |
||
| 16 | * |
||
| 17 | * @param \Childish\query\Builder $query |
||
| 18 | * @param array $results |
||
| 19 | * @return array |
||
| 20 | */ |
||
| 21 | public function processSelect(Builder $query, $results) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Process an "insert get ID" query. |
||
| 28 | * |
||
| 29 | * @param \Childish\query\Builder $query |
||
| 30 | * @param string $sql |
||
| 31 | * @param array $values |
||
| 32 | * @param string $sequence |
||
| 33 | * @return int |
||
| 34 | */ |
||
| 35 | public function processInsertGetId(Builder $query, $sql, $values, $sequence = null) |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Process the results of a column listing query. |
||
| 46 | * |
||
| 47 | * @param array $results |
||
| 48 | * @return array |
||
| 49 | */ |
||
| 50 | public function processColumnListing($results) |
||
| 54 | } |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.