1 | <?php |
||
10 | class BusTrip extends Trip |
||
11 | { |
||
12 | /** |
||
13 | * The stop or station from which the bus arrives. |
||
14 | * |
||
15 | * @param BusStation|BusStation[]|BusStop|BusStop[] $arrivalBusStop |
||
16 | * |
||
17 | * @return static |
||
18 | * |
||
19 | * @see http://schema.org/arrivalBusStop |
||
20 | */ |
||
21 | public function arrivalBusStop($arrivalBusStop) |
||
25 | |||
26 | /** |
||
27 | * The name of the bus (e.g. Bolt Express). |
||
28 | * |
||
29 | * @param string|string[] $busName |
||
30 | * |
||
31 | * @return static |
||
32 | * |
||
33 | * @see http://schema.org/busName |
||
34 | */ |
||
35 | public function busName($busName) |
||
39 | |||
40 | /** |
||
41 | * The unique identifier for the bus. |
||
42 | * |
||
43 | * @param string|string[] $busNumber |
||
44 | * |
||
45 | * @return static |
||
46 | * |
||
47 | * @see http://schema.org/busNumber |
||
48 | */ |
||
49 | public function busNumber($busNumber) |
||
53 | |||
54 | /** |
||
55 | * The stop or station from which the bus departs. |
||
56 | * |
||
57 | * @param BusStation|BusStation[]|BusStop|BusStop[] $departureBusStop |
||
58 | * |
||
59 | * @return static |
||
60 | * |
||
61 | * @see http://schema.org/departureBusStop |
||
62 | */ |
||
63 | public function departureBusStop($departureBusStop) |
||
67 | |||
68 | } |
||
69 |