Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
49 | public static function admin_system_save_settings ($Request) { |
||
50 | static::admin_core_options_save($Request, static::$system_options_keys); |
||
51 | } |
||
52 | /** |
||
53 | * Cancel system settings |
||
54 | * |
||
55 | * @throws \cs\ExitException |
||
56 | */ |
||
57 | public static function admin_system_cancel_settings () { |
||
58 | static::admin_core_options_cancel(); |
||
59 | } |
||
60 | } |
||
61 |
Our type inference engine in quite powerful, but sometimes the code does not provide enough clues to go by. In these cases we request you to add a
@return
annotation as described here.