| Conditions | 7 |
| Paths | 6 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 41 | public static function eventCoreEdituserStart($args) |
||
|
|
|||
| 42 | { |
||
| 43 | header('location: ./modules/yogurt/edituser.php' . (empty($_SERVER['QUERY_STRING']) ? '' : '?' . $_SERVER['QUERY_STRING'])); |
||
| 44 | exit(); |
||
| 45 | } |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @param $args |
||
| 49 | */ |
||
| 50 | public static function eventCoreUserinfoStart($args) |
||
| 51 | { |
||
| 52 | header('location: ./modules/yogurt/index.php' . (empty($_SERVER['QUERY_STRING']) ? '' : '?' . $_SERVER['QUERY_STRING'])); |
||
| 57 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.