1 | <?php |
||
10 | class Trip extends Intangible |
||
11 | { |
||
12 | /** |
||
13 | * The expected arrival time. |
||
14 | * |
||
15 | * @param \DateTimeInterface|\DateTimeInterface[] $arrivalTime |
||
16 | * |
||
17 | * @return static |
||
18 | * |
||
19 | * @see http://schema.org/arrivalTime |
||
20 | */ |
||
21 | public function arrivalTime($arrivalTime) |
||
25 | |||
26 | /** |
||
27 | * The expected departure time. |
||
28 | * |
||
29 | * @param \DateTimeInterface|\DateTimeInterface[] $departureTime |
||
30 | * |
||
31 | * @return static |
||
32 | * |
||
33 | * @see http://schema.org/departureTime |
||
34 | */ |
||
35 | public function departureTime($departureTime) |
||
39 | |||
40 | /** |
||
41 | * An offer to provide this item—for example, an offer to sell a |
||
42 | * product, rent the DVD of a movie, perform a service, or give away tickets |
||
43 | * to an event. |
||
44 | * |
||
45 | * @param Offer|Offer[] $offers |
||
46 | * |
||
47 | * @return static |
||
48 | * |
||
49 | * @see http://schema.org/offers |
||
50 | */ |
||
51 | public function offers($offers) |
||
55 | |||
56 | /** |
||
57 | * The service provider, service operator, or service performer; the goods |
||
58 | * producer. Another party (a seller) may offer those services or goods on |
||
59 | * behalf of the provider. A provider may also serve as the seller. |
||
60 | * |
||
61 | * @param Organization|Organization[]|Person|Person[] $provider |
||
62 | * |
||
63 | * @return static |
||
64 | * |
||
65 | * @see http://schema.org/provider |
||
66 | */ |
||
67 | public function provider($provider) |
||
71 | |||
72 | } |
||
73 |