File tree Expand file tree Collapse file tree 11 files changed +70
-56
lines changed
lib/internal/Magento/Framework
Consumer/Config/ConsumerConfigItem
Publisher/Config/PublisherConfigItem Expand file tree Collapse file tree 11 files changed +70
-56
lines changed Original file line number Diff line number Diff line change 6
6
namespace Magento \Framework \DB \Query ;
7
7
8
8
/**
9
- * Batch Iterator interface
9
+ * The batch queries iterator interface
10
10
*/
11
11
interface BatchIteratorInterface extends \Iterator
12
12
{
Original file line number Diff line number Diff line change @@ -46,6 +46,8 @@ public function __construct()
46
46
}
47
47
48
48
/**
49
+ * Adds a node to node list.
50
+ *
49
51
* @param Node $node
50
52
* @return int
51
53
*
@@ -59,6 +61,8 @@ public function addNode(Node $node)
59
61
}
60
62
61
63
/**
64
+ * Retrieves count elements in node list.
65
+ *
62
66
* @return int
63
67
*
64
68
* @deprecated 102.0.0
@@ -70,6 +74,8 @@ public function count()
70
74
}
71
75
72
76
/**
77
+ * Checks if current position is valid.
78
+ *
73
79
* @return bool
74
80
*
75
81
* @deprecated 102.0.0
@@ -81,6 +87,8 @@ public function valid()
81
87
}
82
88
83
89
/**
90
+ * Move forward to next element.
91
+ *
84
92
* @return false|int
85
93
*
86
94
* @deprecated 102.0.0
@@ -96,6 +104,8 @@ public function next()
96
104
}
97
105
98
106
/**
107
+ * Retrieves the key of the current element.
108
+ *
99
109
* @return int
100
110
*
101
111
* @deprecated 102.0.0
@@ -107,6 +117,8 @@ public function key()
107
117
}
108
118
109
119
/**
120
+ * Retrieves the current node.
121
+ *
110
122
* @return Node
111
123
*
112
124
* @deprecated 102.0.0
@@ -118,6 +130,8 @@ public function current()
118
130
}
119
131
120
132
/**
133
+ * Rewinds the Iterator to the first element.
134
+ *
121
135
* @return void
122
136
*
123
137
* @deprecated 102.0.0
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ public function current()
61
61
}
62
62
63
63
/**
64
- * { @inheritdoc}
64
+ * @inheritdoc
65
65
*/
66
66
#[\ReturnTypeWillChange]
67
67
public function next ()
@@ -84,7 +84,7 @@ private function initObject(array $data)
84
84
}
85
85
86
86
/**
87
- * { @inheritdoc}
87
+ * @inheritdoc
88
88
*/
89
89
#[\ReturnTypeWillChange]
90
90
public function key ()
@@ -93,7 +93,7 @@ public function key()
93
93
}
94
94
95
95
/**
96
- * { @inheritdoc}
96
+ * @inheritdoc
97
97
*/
98
98
#[\ReturnTypeWillChange]
99
99
public function valid ()
@@ -102,7 +102,7 @@ public function valid()
102
102
}
103
103
104
104
/**
105
- * { @inheritdoc}
105
+ * @inheritdoc
106
106
*/
107
107
#[\ReturnTypeWillChange]
108
108
public function rewind ()
@@ -114,7 +114,7 @@ public function rewind()
114
114
}
115
115
116
116
/**
117
- * { @inheritdoc}
117
+ * @inheritdoc
118
118
*/
119
119
#[\ReturnTypeWillChange]
120
120
public function offsetExists ($ offset )
@@ -123,7 +123,7 @@ public function offsetExists($offset)
123
123
}
124
124
125
125
/**
126
- * { @inheritdoc}
126
+ * @inheritdoc
127
127
*/
128
128
#[\ReturnTypeWillChange]
129
129
public function offsetGet ($ offset )
@@ -137,7 +137,7 @@ public function offsetGet($offset)
137
137
}
138
138
139
139
/**
140
- * { @inheritdoc}
140
+ * @inheritdoc
141
141
*/
142
142
#[\ReturnTypeWillChange]
143
143
public function offsetSet ($ offset , $ value )
@@ -146,7 +146,7 @@ public function offsetSet($offset, $value)
146
146
}
147
147
148
148
/**
149
- * { @inheritdoc}
149
+ * @inheritdoc
150
150
*/
151
151
#[\ReturnTypeWillChange]
152
152
public function offsetUnset ($ offset )
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ public function current()
53
53
}
54
54
55
55
/**
56
- * { @inheritdoc}
56
+ * @inheritdoc
57
57
*/
58
58
#[\ReturnTypeWillChange]
59
59
public function next ()
@@ -76,7 +76,7 @@ private function initObject(array $data)
76
76
}
77
77
78
78
/**
79
- * { @inheritdoc}
79
+ * @inheritdoc
80
80
*/
81
81
#[\ReturnTypeWillChange]
82
82
public function key ()
@@ -85,7 +85,7 @@ public function key()
85
85
}
86
86
87
87
/**
88
- * { @inheritdoc}
88
+ * @inheritdoc
89
89
*/
90
90
#[\ReturnTypeWillChange]
91
91
public function valid ()
@@ -94,7 +94,7 @@ public function valid()
94
94
}
95
95
96
96
/**
97
- * { @inheritdoc}
97
+ * @inheritdoc
98
98
*/
99
99
#[\ReturnTypeWillChange]
100
100
public function rewind ()
@@ -106,7 +106,7 @@ public function rewind()
106
106
}
107
107
108
108
/**
109
- * { @inheritdoc}
109
+ * @inheritdoc
110
110
*/
111
111
#[\ReturnTypeWillChange]
112
112
public function offsetExists ($ offset )
@@ -115,7 +115,7 @@ public function offsetExists($offset)
115
115
}
116
116
117
117
/**
118
- * { @inheritdoc}
118
+ * @inheritdoc
119
119
*/
120
120
#[\ReturnTypeWillChange]
121
121
public function offsetGet ($ offset )
@@ -129,7 +129,7 @@ public function offsetGet($offset)
129
129
}
130
130
131
131
/**
132
- * { @inheritdoc}
132
+ * @inheritdoc
133
133
*/
134
134
#[\ReturnTypeWillChange]
135
135
public function offsetSet ($ offset , $ value )
@@ -138,7 +138,7 @@ public function offsetSet($offset, $value)
138
138
}
139
139
140
140
/**
141
- * { @inheritdoc}
141
+ * @inheritdoc
142
142
*/
143
143
#[\ReturnTypeWillChange]
144
144
public function offsetUnset ($ offset )
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ public function current()
53
53
}
54
54
55
55
/**
56
- * { @inheritdoc}
56
+ * @inheritdoc
57
57
*/
58
58
#[\ReturnTypeWillChange]
59
59
public function next ()
@@ -79,7 +79,7 @@ private function initObject(array $data)
79
79
}
80
80
81
81
/**
82
- * { @inheritdoc}
82
+ * @inheritdoc
83
83
*/
84
84
#[\ReturnTypeWillChange]
85
85
public function key ()
@@ -88,7 +88,7 @@ public function key()
88
88
}
89
89
90
90
/**
91
- * { @inheritdoc}
91
+ * @inheritdoc
92
92
*/
93
93
#[\ReturnTypeWillChange]
94
94
public function valid ()
@@ -97,7 +97,7 @@ public function valid()
97
97
}
98
98
99
99
/**
100
- * { @inheritdoc}
100
+ * @inheritdoc
101
101
*/
102
102
#[\ReturnTypeWillChange]
103
103
public function rewind ()
@@ -112,7 +112,7 @@ public function rewind()
112
112
}
113
113
114
114
/**
115
- * { @inheritdoc}
115
+ * @inheritdoc
116
116
*/
117
117
#[\ReturnTypeWillChange]
118
118
public function offsetExists ($ offset )
@@ -121,7 +121,7 @@ public function offsetExists($offset)
121
121
}
122
122
123
123
/**
124
- * { @inheritdoc}
124
+ * @inheritdoc
125
125
*/
126
126
#[\ReturnTypeWillChange]
127
127
public function offsetGet ($ offset )
@@ -135,7 +135,7 @@ public function offsetGet($offset)
135
135
}
136
136
137
137
/**
138
- * { @inheritdoc}
138
+ * @inheritdoc
139
139
*/
140
140
#[\ReturnTypeWillChange]
141
141
public function offsetSet ($ offset , $ value )
@@ -144,7 +144,7 @@ public function offsetSet($offset, $value)
144
144
}
145
145
146
146
/**
147
- * { @inheritdoc}
147
+ * @inheritdoc
148
148
*/
149
149
#[\ReturnTypeWillChange]
150
150
public function offsetUnset ($ offset )
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ public function current()
61
61
}
62
62
63
63
/**
64
- * { @inheritdoc}
64
+ * @inheritdoc
65
65
*/
66
66
#[\ReturnTypeWillChange]
67
67
public function next ()
@@ -87,7 +87,7 @@ private function initObject(array $data)
87
87
}
88
88
89
89
/**
90
- * { @inheritdoc}
90
+ * @inheritdoc
91
91
*/
92
92
#[\ReturnTypeWillChange]
93
93
public function key ()
@@ -96,7 +96,7 @@ public function key()
96
96
}
97
97
98
98
/**
99
- * { @inheritdoc}
99
+ * @inheritdoc
100
100
*/
101
101
#[\ReturnTypeWillChange]
102
102
public function valid ()
@@ -105,7 +105,7 @@ public function valid()
105
105
}
106
106
107
107
/**
108
- * { @inheritdoc}
108
+ * @inheritdoc
109
109
*/
110
110
#[\ReturnTypeWillChange]
111
111
public function rewind ()
@@ -120,7 +120,7 @@ public function rewind()
120
120
}
121
121
122
122
/**
123
- * { @inheritdoc}
123
+ * @inheritdoc
124
124
*/
125
125
#[\ReturnTypeWillChange]
126
126
public function offsetExists ($ offset )
@@ -129,7 +129,7 @@ public function offsetExists($offset)
129
129
}
130
130
131
131
/**
132
- * { @inheritdoc}
132
+ * @inheritdoc
133
133
*/
134
134
#[\ReturnTypeWillChange]
135
135
public function offsetGet ($ offset )
@@ -143,7 +143,7 @@ public function offsetGet($offset)
143
143
}
144
144
145
145
/**
146
- * { @inheritdoc}
146
+ * @inheritdoc
147
147
*/
148
148
#[\ReturnTypeWillChange]
149
149
public function offsetSet ($ offset , $ value )
@@ -152,7 +152,7 @@ public function offsetSet($offset, $value)
152
152
}
153
153
154
154
/**
155
- * { @inheritdoc}
155
+ * @inheritdoc
156
156
*/
157
157
#[\ReturnTypeWillChange]
158
158
public function offsetUnset ($ offset )
You can’t perform that action at this time.
0 commit comments