| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 2.2559 |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | 1 | public function saveAssignedToMetabox($postId) |
|
| 14 | { |
||
| 15 | 1 | if (!wp_verify_nonce(glsr(Helper::class)->filterInput('_nonce-assigned-to'), 'assigned_to')) { |
|
| 16 | 1 | return; |
|
| 17 | } |
||
| 18 | $assignedTo = strval(glsr(Helper::class)->filterInput('assigned_to')); |
||
| 19 | update_post_meta($postId, 'assigned_to', $assignedTo); |
||
| 20 | } |
||
| 39 |