| 1 | <?php  | 
            ||
| 19 | trait GeolocalizableTrait  | 
            ||
| 20 | { | 
            ||
| 21 | /**  | 
            ||
| 22 | * @var Coordinate  | 
            ||
| 23 | */  | 
            ||
| 24 | protected $coordinate;  | 
            ||
| 25 | |||
| 26 | /**  | 
            ||
| 27 |      * {@inheritdoc} | 
            ||
| 28 | */  | 
            ||
| 29 | public function coordinate()  | 
            ||
| 33 | |||
| 34 | /**  | 
            ||
| 35 |      * {@inheritdoc} | 
            ||
| 36 | */  | 
            ||
| 37 | public function setCoordinate(Coordinate $coordinate)  | 
            ||
| 41 | |||
| 42 | /**  | 
            ||
| 43 | * @return bool  | 
            ||
| 44 | */  | 
            ||
| 45 | public function hasCoordinate()  | 
            ||
| 49 | }  | 
            ||
| 50 |