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