| Total Complexity | 9 |
| Total Lines | 45 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | trait SenCustomerData |
||
| 10 | { |
||
| 11 | 4 | public function setSenName(string $name): void |
|
| 12 | { |
||
| 13 | 4 | $this->offsetSet(Attribute::SEN_NAME, $name); |
|
|
|
|||
| 14 | } |
||
| 15 | |||
| 16 | 1 | public function setSenFirm(string $firm): void |
|
| 17 | { |
||
| 18 | 1 | $this->offsetSet(Attribute::SEN_FIRM, $firm); |
|
| 19 | } |
||
| 20 | |||
| 21 | 4 | public function setSenStreet(string $street): void |
|
| 22 | { |
||
| 23 | 4 | $this->offsetSet(Attribute::SEN_STREET, $street); |
|
| 24 | } |
||
| 25 | |||
| 26 | 1 | public function setSenStreetAppend(string $street): void |
|
| 29 | } |
||
| 30 | |||
| 31 | 5 | public function setSenCity(string $city): void |
|
| 32 | { |
||
| 33 | 5 | $this->offsetSet(Attribute::SEN_CITY, $city); |
|
| 34 | } |
||
| 35 | |||
| 36 | 5 | public function setSenZip(string $zip): void |
|
| 37 | { |
||
| 38 | 5 | $this->offsetSet(Attribute::SEN_ZIP, $zip); |
|
| 39 | } |
||
| 40 | |||
| 41 | 5 | public function setSenCountry(string $country): void |
|
| 44 | } |
||
| 45 | |||
| 46 | 4 | public function setSenEmail(string $email): void |
|
| 47 | { |
||
| 48 | 4 | $this->offsetSet(Attribute::SEN_EMAIL, $email); |
|
| 49 | } |
||
| 50 | |||
| 51 | 5 | public function setSenPhone(string $phone): void |
|
| 54 | } |
||
| 55 | } |
||
| 56 |