Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
12 | public function defaults() |
||
13 | { |
||
14 | return [ |
||
15 | 'assigned_to' => '', |
||
16 | 'author' => '', |
||
17 | 'avatar' => '', |
||
18 | 'content' => '', |
||
19 | 'date' => get_date_from_gmt( gmdate( 'Y-m-d H:i:s' )), |
||
20 | 'email' => '', |
||
21 | 'ip_address' => '', |
||
22 | 'pinned' => false, |
||
23 | 'rating' => '', |
||
24 | 'response' => '', |
||
25 | 'review_id' => md5( time().mt_rand() ), |
||
26 | 'review_type' => 'local', |
||
27 | 'title' => '', |
||
28 | 'url' => '', |
||
29 | ]; |
||
32 |