| 1 | <?php |
||
| 10 | class Blog extends CreativeWork |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * A posting that is part of this blog. |
||
| 14 | * |
||
| 15 | * @param BlogPosting|BlogPosting[] $blogPost |
||
| 16 | * |
||
| 17 | * @return static |
||
| 18 | * |
||
| 19 | * @see http://schema.org/blogPost |
||
| 20 | */ |
||
| 21 | public function blogPost($blogPost) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * The postings that are part of this blog. |
||
| 28 | * |
||
| 29 | * @param BlogPosting|BlogPosting[] $blogPosts |
||
| 30 | * |
||
| 31 | * @return static |
||
| 32 | * |
||
| 33 | * @see http://schema.org/blogPosts |
||
| 34 | */ |
||
| 35 | public function blogPosts($blogPosts) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * The International Standard Serial Number (ISSN) that identifies this |
||
| 42 | * serial publication. You can repeat this property to identify different |
||
| 43 | * formats of, or the linking ISSN (ISSN-L) for, this serial publication. |
||
| 44 | * |
||
| 45 | * @param string|string[] $issn |
||
| 46 | * |
||
| 47 | * @return static |
||
| 48 | * |
||
| 49 | * @see http://schema.org/issn |
||
| 50 | */ |
||
| 51 | public function issn($issn) |
||
| 55 | |||
| 56 | } |
||
| 57 |