| Conditions | 5 |
| Paths | 5 |
| Total Lines | 16 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 29 | public function translate( $value ) |
||
| 30 | { |
||
| 31 | switch( $value ) |
||
| 32 | { |
||
| 33 | case \Aimeos\MShop\Common\Item\Address\Base::SALUTATION_MR: |
||
| 34 | return 0; |
||
| 35 | case \Aimeos\MShop\Common\Item\Address\Base::SALUTATION_MRS: |
||
| 36 | return 1; |
||
| 37 | case \Aimeos\MShop\Common\Item\Address\Base::SALUTATION_MISS: |
||
| 38 | return 2; |
||
| 39 | case \Aimeos\MShop\Common\Item\Address\Base::SALUTATION_COMPANY: |
||
| 40 | return 10; |
||
| 41 | } |
||
| 42 | |||
| 43 | return 99; |
||
| 44 | } |
||
| 45 | |||
| 70 |