| Conditions | 4 | 
| Paths | 4 | 
| Total Lines | 13 | 
| Code Lines | 8 | 
| 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 | case \Aimeos\MShop\Common\Item\Address\Base::SALUTATION_MISS: | ||
| 37 | return 1; | ||
| 38 | } | ||
| 39 | |||
| 40 | return 99; | ||
| 41 | } | ||
| 42 | |||
| 63 |