Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
46 | 3 | public function __construct($address_line_1, $address_line_2, $city, $state, $postal_code) |
|
47 | { |
||
48 | 3 | $this->address_line_1 = $address_line_1; |
|
49 | 3 | $this->address_line_2 = $address_line_2; |
|
50 | 3 | $this->city = $city; |
|
51 | 3 | $this->state = $state; |
|
52 | 3 | $this->postal_code = $postal_code; |
|
53 | 3 | } |
|
68 | } |