@@ -10,8 +10,8 @@ class MicrodataPhpDOMElement extends \DOMElement {
10
10
/**
11
11
* Determine whether the itemscope attribute is present on this element.
12
12
*
13
- * @return
14
- * boolean TRUE if this is an item, FALSE if it is not.
13
+ * @return bool
14
+ * TRUE if this is an item, FALSE if it is not.
15
15
*/
16
16
public function itemScope () {
17
17
return $ this ->hasAttribute ('itemscope ' );
@@ -20,7 +20,7 @@ public function itemScope() {
20
20
/**
21
21
* Retrieve this item's itemtypes.
22
22
*
23
- * @return
23
+ * @return array
24
24
* An array of itemtype tokens.
25
25
*/
26
26
public function itemType () {
@@ -36,7 +36,7 @@ public function itemType() {
36
36
/**
37
37
* Retrieve this item's itemid.
38
38
*
39
- * @return
39
+ * @return string
40
40
* A string with the itemid.
41
41
*/
42
42
public function itemId () {
@@ -52,7 +52,7 @@ public function itemId() {
52
52
/**
53
53
* Retrieve this item's itemprops.
54
54
*
55
- * @return
55
+ * @return array
56
56
* An array of itemprop tokens.
57
57
*/
58
58
public function itemProp () {
@@ -66,7 +66,7 @@ public function itemProp() {
66
66
/**
67
67
* Retrieve the ids of other items which this item references.
68
68
*
69
- * @return
69
+ * @return array
70
70
* An array of ids as contained in the itemref attribute.
71
71
*/
72
72
public function itemRef () {
@@ -80,7 +80,7 @@ public function itemRef() {
80
80
/**
81
81
* Retrieve the properties
82
82
*
83
- * @return
83
+ * @return array
84
84
* An array of MicrodataPhpDOMElements which are properties of this
85
85
* element.
86
86
*/
@@ -107,7 +107,7 @@ public function properties() {
107
107
/**
108
108
* Retrieve the element's value, determined by the element type.
109
109
*
110
- * @return
110
+ * @return string
111
111
* The string value if the element is not an item, or $this if it is
112
112
* an item.
113
113
*/
0 commit comments