@@ -16,46 +16,46 @@ |
||
16 | 16 | * |
17 | 17 | * @param string $caption |
18 | 18 | */ |
19 | - public function setCaption($caption); |
|
19 | + public function setCaption($caption); |
|
20 | 20 | |
21 | - /** |
|
22 | - * Getter method for Caption. |
|
23 | - */ |
|
24 | - public function getCaption(); |
|
21 | + /** |
|
22 | + * Getter method for Caption. |
|
23 | + */ |
|
24 | + public function getCaption(); |
|
25 | 25 | |
26 | - /** |
|
27 | - * Setter method for exif data via PropertyValue. |
|
28 | - * |
|
29 | - * @param PropertyValue $propertyValue |
|
30 | - */ |
|
31 | - public function setExifData(PropertyValue $propertyValue); |
|
26 | + /** |
|
27 | + * Setter method for exif data via PropertyValue. |
|
28 | + * |
|
29 | + * @param PropertyValue $propertyValue |
|
30 | + */ |
|
31 | + public function setExifData(PropertyValue $propertyValue); |
|
32 | 32 | |
33 | - /** |
|
34 | - * Getter method for exit data. |
|
35 | - */ |
|
36 | - public function getExifData(); |
|
33 | + /** |
|
34 | + * Getter method for exit data. |
|
35 | + */ |
|
36 | + public function getExifData(); |
|
37 | 37 | |
38 | - /** |
|
39 | - * Setter method for representative of page value |
|
40 | - * |
|
41 | - * @param string $representativeOfPage |
|
42 | - */ |
|
43 | - public function setRepresentativeOfPage($representativeOfPage); |
|
38 | + /** |
|
39 | + * Setter method for representative of page value |
|
40 | + * |
|
41 | + * @param string $representativeOfPage |
|
42 | + */ |
|
43 | + public function setRepresentativeOfPage($representativeOfPage); |
|
44 | 44 | |
45 | - /** |
|
46 | - * Getter method for representative of page value |
|
47 | - */ |
|
48 | - public function getRepresentativeOfPage(); |
|
45 | + /** |
|
46 | + * Getter method for representative of page value |
|
47 | + */ |
|
48 | + public function getRepresentativeOfPage(); |
|
49 | 49 | |
50 | - /** |
|
51 | - * Setter method for Thumbnail. |
|
52 | - * |
|
53 | - * @param ImageObject $imageObject |
|
54 | - */ |
|
55 | - public function setThumbnail(ImageObject $imageObject); |
|
50 | + /** |
|
51 | + * Setter method for Thumbnail. |
|
52 | + * |
|
53 | + * @param ImageObject $imageObject |
|
54 | + */ |
|
55 | + public function setThumbnail(ImageObject $imageObject); |
|
56 | 56 | |
57 | - /** |
|
58 | - * Getter method for thumbnail. |
|
59 | - */ |
|
60 | - public function getThumbnail(); |
|
57 | + /** |
|
58 | + * Getter method for thumbnail. |
|
59 | + */ |
|
60 | + public function getThumbnail(); |
|
61 | 61 | } |
62 | 62 | \ No newline at end of file |
@@ -3,7 +3,7 @@ |
||
3 | 3 | namespace luya\web\jsonld; |
4 | 4 | |
5 | 5 | /** |
6 | - * JsonLd Comment Trait. |
|
6 | + * JsonLd Comment Trait. |
|
7 | 7 | * |
8 | 8 | * @see http://schema.org/Comment |
9 | 9 | * @author Basil Suter <[email protected]> |
@@ -13,82 +13,82 @@ |
||
13 | 13 | { |
14 | 14 | use MediaObjectTrait; |
15 | 15 | |
16 | - private $_caption; |
|
16 | + private $_caption; |
|
17 | 17 | |
18 | - /** |
|
19 | - * {@inheritdoc} |
|
20 | - */ |
|
21 | - public function setCaption($caption) |
|
22 | - { |
|
23 | - $this->_caption = $caption; |
|
24 | - return $this; |
|
25 | - } |
|
18 | + /** |
|
19 | + * {@inheritdoc} |
|
20 | + */ |
|
21 | + public function setCaption($caption) |
|
22 | + { |
|
23 | + $this->_caption = $caption; |
|
24 | + return $this; |
|
25 | + } |
|
26 | 26 | |
27 | - /** |
|
28 | - * {@inheritdoc} |
|
29 | - */ |
|
30 | - public function getCaption() |
|
31 | - { |
|
32 | - return $this->_caption; |
|
33 | - } |
|
27 | + /** |
|
28 | + * {@inheritdoc} |
|
29 | + */ |
|
30 | + public function getCaption() |
|
31 | + { |
|
32 | + return $this->_caption; |
|
33 | + } |
|
34 | 34 | |
35 | - private $_exifData; |
|
35 | + private $_exifData; |
|
36 | 36 | |
37 | - /** |
|
38 | - * {@inheritdoc} |
|
39 | - */ |
|
40 | - public function setExifData(PropertyValue $propertyValue) |
|
41 | - { |
|
42 | - $this->_exifData = $propertyValue; |
|
37 | + /** |
|
38 | + * {@inheritdoc} |
|
39 | + */ |
|
40 | + public function setExifData(PropertyValue $propertyValue) |
|
41 | + { |
|
42 | + $this->_exifData = $propertyValue; |
|
43 | 43 | |
44 | - return $this; |
|
45 | - } |
|
44 | + return $this; |
|
45 | + } |
|
46 | 46 | |
47 | - /** |
|
48 | - * {@inheritdoc} |
|
49 | - */ |
|
50 | - public function getExifData() |
|
51 | - { |
|
52 | - return $this->_exifData; |
|
53 | - } |
|
47 | + /** |
|
48 | + * {@inheritdoc} |
|
49 | + */ |
|
50 | + public function getExifData() |
|
51 | + { |
|
52 | + return $this->_exifData; |
|
53 | + } |
|
54 | 54 | |
55 | - private $_representativeOfPage; |
|
55 | + private $_representativeOfPage; |
|
56 | 56 | |
57 | - /** |
|
58 | - * {@inheritdoc} |
|
59 | - */ |
|
60 | - public function setRepresentativeOfPage($representativeOfPage) |
|
61 | - { |
|
62 | - $this->_representativeOfPage = $representativeOfPage; |
|
57 | + /** |
|
58 | + * {@inheritdoc} |
|
59 | + */ |
|
60 | + public function setRepresentativeOfPage($representativeOfPage) |
|
61 | + { |
|
62 | + $this->_representativeOfPage = $representativeOfPage; |
|
63 | 63 | |
64 | - return $this; |
|
65 | - } |
|
64 | + return $this; |
|
65 | + } |
|
66 | 66 | |
67 | - /** |
|
68 | - * {@inheritdoc} |
|
69 | - */ |
|
70 | - public function getRepresentativeOfPage() |
|
71 | - { |
|
72 | - return $this->_representativeOfPage; |
|
73 | - } |
|
67 | + /** |
|
68 | + * {@inheritdoc} |
|
69 | + */ |
|
70 | + public function getRepresentativeOfPage() |
|
71 | + { |
|
72 | + return $this->_representativeOfPage; |
|
73 | + } |
|
74 | 74 | |
75 | - private $_thumbnail; |
|
75 | + private $_thumbnail; |
|
76 | 76 | |
77 | - /** |
|
78 | - * {@inheritdoc} |
|
79 | - */ |
|
80 | - public function setThumbnail(ImageObject $imageObject) |
|
81 | - { |
|
82 | - $this->_thumbnail = $imageObject; |
|
77 | + /** |
|
78 | + * {@inheritdoc} |
|
79 | + */ |
|
80 | + public function setThumbnail(ImageObject $imageObject) |
|
81 | + { |
|
82 | + $this->_thumbnail = $imageObject; |
|
83 | 83 | |
84 | - return $this; |
|
85 | - } |
|
84 | + return $this; |
|
85 | + } |
|
86 | 86 | |
87 | - /** |
|
88 | - * {@inheritdoc} |
|
89 | - */ |
|
90 | - public function getThumbnail() |
|
91 | - { |
|
92 | - return $this->_thumbnail; |
|
93 | - } |
|
87 | + /** |
|
88 | + * {@inheritdoc} |
|
89 | + */ |
|
90 | + public function getThumbnail() |
|
91 | + { |
|
92 | + return $this->_thumbnail; |
|
93 | + } |
|
94 | 94 | } |
95 | 95 | \ No newline at end of file |