1 | <?php |
||
26 | class CreativeWorkSeries extends CreativeWork |
||
27 | { |
||
28 | /** |
||
29 | * The end date and time of the item (in [ISO 8601 date |
||
30 | * format](http://en.wikipedia.org/wiki/ISO_8601)). |
||
31 | * |
||
32 | * @param \DateTimeInterface|\DateTimeInterface[] $endDate |
||
33 | * |
||
34 | * @return static |
||
35 | * |
||
36 | * @see http://schema.org/endDate |
||
37 | */ |
||
38 | public function endDate($endDate) |
||
42 | |||
43 | /** |
||
44 | * The International Standard Serial Number (ISSN) that identifies this |
||
45 | * serial publication. You can repeat this property to identify different |
||
46 | * formats of, or the linking ISSN (ISSN-L) for, this serial publication. |
||
47 | * |
||
48 | * @param string|string[] $issn |
||
49 | * |
||
50 | * @return static |
||
51 | * |
||
52 | * @see http://schema.org/issn |
||
53 | */ |
||
54 | public function issn($issn) |
||
58 | |||
59 | /** |
||
60 | * The start date and time of the item (in [ISO 8601 date |
||
61 | * format](http://en.wikipedia.org/wiki/ISO_8601)). |
||
62 | * |
||
63 | * @param \DateTimeInterface|\DateTimeInterface[] $startDate |
||
64 | * |
||
65 | * @return static |
||
66 | * |
||
67 | * @see http://schema.org/startDate |
||
68 | */ |
||
69 | public function startDate($startDate) |
||
73 | |||
74 | } |
||
75 |