| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class Hansard extends \HANSARDLIST { |
||
| 10 | /** |
||
| 11 | * Search |
||
| 12 | * |
||
| 13 | * Performs a search of Hansard. |
||
| 14 | * |
||
| 15 | * @param string $searchstring The string to initialise SEARCHENGINE with. |
||
| 16 | * @param array $args An array of arguments to restrict search results. |
||
| 17 | * |
||
| 18 | * @return array An array of search results. |
||
| 19 | */ |
||
| 20 | |||
| 21 | public function search($searchstring, $args) { |
||
| 35 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.