1 | <?php |
||
10 | class MusicRelease extends MusicPlaylist |
||
11 | { |
||
12 | /** |
||
13 | * The catalog number for the release. |
||
14 | * |
||
15 | * @param string $catalogNumber |
||
16 | * |
||
17 | * @return static |
||
18 | * |
||
19 | * @see http://schema.org/catalogNumber |
||
20 | */ |
||
21 | public function catalogNumber($catalogNumber) |
||
25 | |||
26 | /** |
||
27 | * The group the release is credited to if different than the byArtist. For |
||
28 | * example, Red and Blue is credited to "Stefani Germanotta Band", but by |
||
29 | * Lady Gaga. |
||
30 | * |
||
31 | * @param \Spatie\SchemaOrg\Organization $creditedTo |
||
32 | * |
||
33 | * @return static |
||
34 | * |
||
35 | * @see http://schema.org/creditedTo |
||
36 | */ |
||
37 | public function creditedTo($creditedTo) |
||
41 | |||
42 | /** |
||
43 | * Format of this release (the type of recording media used, ie. compact |
||
44 | * disc, digital media, LP, etc.). |
||
45 | * |
||
46 | * @param \Spatie\SchemaOrg\MusicReleaseFormatType $musicReleaseFormat |
||
47 | * |
||
48 | * @return static |
||
49 | * |
||
50 | * @see http://schema.org/musicReleaseFormat |
||
51 | */ |
||
52 | public function musicReleaseFormat($musicReleaseFormat) |
||
56 | |||
57 | /** |
||
58 | * The label that issued the release. |
||
59 | * |
||
60 | * @param \Spatie\SchemaOrg\Organization $recordLabel |
||
61 | * |
||
62 | * @return static |
||
63 | * |
||
64 | * @see http://schema.org/recordLabel |
||
65 | */ |
||
66 | public function recordLabel($recordLabel) |
||
70 | |||
71 | /** |
||
72 | * The album this is a release of. |
||
73 | * |
||
74 | * @param \Spatie\SchemaOrg\MusicAlbum $releaseOf |
||
75 | * |
||
76 | * @return static |
||
77 | * |
||
78 | * @see http://schema.org/releaseOf |
||
79 | */ |
||
80 | public function releaseOf($releaseOf) |
||
84 | |||
85 | } |
||
86 |