| Conditions | 5 |
| Paths | 5 |
| Total Lines | 16 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 5.0729 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 83 | 4 | public static function transform( $payment_method ) { |
|
| 84 | 4 | switch ( $payment_method ) { |
|
| 85 | case Core_PaymentMethods::BANCONTACT: |
||
| 86 | return self::BANCONTACT; |
||
| 87 | |||
| 88 | case Core_PaymentMethods::IDEAL: |
||
| 89 | 1 | return self::IDEAL; |
|
| 90 | |||
| 91 | case Core_PaymentMethods::PAYPAL: |
||
| 92 | 1 | return self::PAYPAL; |
|
| 93 | |||
| 94 | case Core_PaymentMethods::SOFORT: |
||
| 95 | 1 | return self::SOFORT; |
|
| 96 | |||
| 97 | default: |
||
| 98 | 1 | return null; |
|
| 99 | } |
||
| 102 |