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