| Conditions | 3 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php |
||
| 49 | public static function admin_site_info_save_settings ($Request) { |
||
| 50 | static::admin_core_options_save($Request, static::$site_info_options_keys); |
||
| 51 | } |
||
| 52 | /** |
||
| 53 | * Cancel site info settings |
||
| 54 | * |
||
| 55 | * @throws \cs\ExitException |
||
| 56 | */ |
||
| 57 | public static function admin_site_info_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
@returnannotation as described here.