| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | function df_tools_events_help($route_name, RouteMatchInterface $route_match) { |
||
|
|
|||
| 14 | switch ($route_name) { |
||
| 15 | // Main module help for the df_tools_events module. |
||
| 16 | case 'help.page.df_tools_events': |
||
| 17 | $output = ''; |
||
| 18 | $output .= '<h3>' . t('About') . '</h3>'; |
||
| 19 | $output .= '<p>' . t('Defines Event content type for use in demos.') . '</p>'; |
||
| 20 | return $output; |
||
| 21 | |||
| 22 | default: |
||
| 23 | } |
||
| 25 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.