@@ -9,7 +9,6 @@ trait HasCollection
9
9
/**
10
10
* Determine if an attribute or relation exists on the model.
11
11
*
12
- * @param string $key
13
12
*
14
13
* @return bool
15
14
*/
@@ -20,9 +19,6 @@ public function __isset(string $key)
20
19
21
20
/**
22
21
* Determine if a key exists on the items.
23
- *
24
- * @param string $offset
25
- * @return bool
26
22
*/
27
23
public function offsetExists (string $ offset ): bool
28
24
{
@@ -32,7 +28,6 @@ public function offsetExists(string $offset): bool
32
28
/**
33
29
* Unset an attribute on the model.
34
30
*
35
- * @param string $key
36
31
*
37
32
* @return void
38
33
*/
@@ -44,7 +39,6 @@ public function __unset(string $key)
44
39
/**
45
40
* Unset an attribute on the model.
46
41
*
47
- * @param string $offset
48
42
* @return void
49
43
*/
50
44
public function offsetUnset (string $ offset )
@@ -53,8 +47,8 @@ public function offsetUnset(string $offset)
53
47
}
54
48
55
49
/**
56
- * @param mixed $offset
57
- * @param mixed $value
50
+ * @param mixed $offset
51
+ * @param mixed $value
58
52
* @return void
59
53
*/
60
54
public function offsetSet ($ offset , $ value )
@@ -67,7 +61,6 @@ public function offsetSet($offset, $value)
67
61
}
68
62
69
63
/**
70
- * @param string $offset
71
64
* @return mixed|Item|null
72
65
*/
73
66
public function offsetGet (string $ offset )
@@ -77,8 +70,6 @@ public function offsetGet(string $offset)
77
70
78
71
/**
79
72
* Determine if the purchase unit is empty or not.
80
- *
81
- * @return bool
82
73
*/
83
74
public function isEmpty (): bool
84
75
{
0 commit comments