| Conditions | 1 |
| Paths | 1 |
| Total Lines | 26 |
| Lines | 26 |
| Ratio | 100 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | protected function getValues() |
||
| 35 | { |
||
| 36 | return [ |
||
| 37 | 'APPROVED' => [ |
||
| 38 | 'value' => EEM_Registration::status_id_approved, |
||
| 39 | ], |
||
| 40 | 'CANCELLED' => [ |
||
| 41 | 'value' => EEM_Registration::status_id_cancelled, |
||
| 42 | ], |
||
| 43 | 'DECLINED' => [ |
||
| 44 | 'value' => EEM_Registration::status_id_declined, |
||
| 45 | ], |
||
| 46 | 'INCOMPLETE' => [ |
||
| 47 | 'value' => EEM_Registration::status_id_incomplete, |
||
| 48 | ], |
||
| 49 | 'PENDING_PAYMENT' => [ |
||
| 50 | 'value' => EEM_Registration::status_id_pending_payment, |
||
| 51 | ], |
||
| 52 | 'UNAPPROVED' => [ |
||
| 53 | 'value' => EEM_Registration::status_id_not_approved, |
||
| 54 | ], |
||
| 55 | 'WAIT_LIST' => [ |
||
| 56 | 'value' => EEM_Registration::status_id_wait_list, |
||
| 57 | ], |
||
| 58 | ]; |
||
| 59 | } |
||
| 60 | } |
||
| 61 |