Conditions | 3 |
Paths | 4 |
Total Lines | 14 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
13 | public function defaults() |
||
14 | { |
||
15 | $user = wp_get_current_user(); |
||
16 | return [ |
||
17 | 'assign_to' => '', |
||
18 | 'category' => '', |
||
19 | 'content' => '', |
||
20 | 'email' => $user->exists() ? $user->user_email : '', |
||
21 | 'form_id' => '', |
||
22 | 'ip_address' => glsr( Helper::class )->getIpAddress(), |
||
23 | 'name' => $user->exists() ? $user->display_name : '', |
||
24 | 'rating' => '0', |
||
25 | 'terms' => '', |
||
26 | 'title' => '', |
||
27 | ]; |
||
30 |