1 | <?php |
||
20 | trait StringCountryTrait { |
||
21 | |||
22 | /** |
||
23 | * Country. |
||
24 | * |
||
25 | * @var string |
||
26 | */ |
||
27 | protected $country; |
||
28 | |||
29 | /** |
||
30 | * Get the country. |
||
31 | * |
||
32 | * @return string Returns the country. |
||
33 | */ |
||
34 | public function getCountry() { |
||
37 | |||
38 | /** |
||
39 | * Set the country. |
||
40 | * |
||
41 | * @param string $country The country. |
||
42 | */ |
||
43 | public function setCountry($country) { |
||
47 | } |
||
48 |