| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public static function transform( Pay_Address $address ) { |
||
| 30 | $address = new Address( |
||
| 31 | $address->get_country_code(), |
||
| 32 | $address->get_street_name(), |
||
| 33 | $address->get_house_number(), |
||
| 34 | $address->get_postal_code(), |
||
| 35 | $address->get_city(), |
||
| 36 | $address->get_region() |
||
| 37 | ); |
||
| 38 | |||
| 39 | return $address; |
||
| 40 | } |
||
| 42 |