1 | <?php |
||
7 | class WaypointType |
||
8 | { |
||
9 | /** |
||
10 | * Opencaching waypoint. |
||
11 | * |
||
12 | * @var string |
||
13 | */ |
||
14 | const OC = 'oc'; |
||
15 | |||
16 | /** |
||
17 | * Geocaching waypoint. |
||
18 | * |
||
19 | * @var string |
||
20 | */ |
||
21 | const GC = 'gc'; |
||
22 | |||
23 | /** |
||
24 | * Guesses the waypoint type by given waypoint. |
||
25 | * |
||
26 | * @param string $waypoint |
||
27 | * |
||
28 | * @return string |
||
29 | * |
||
30 | * @throws UnknownWaypointTypeException Thrown when the waypoint type could not be guessed |
||
31 | */ |
||
32 | public static function guess($waypoint) |
||
53 | } |
||
54 |