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