mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-21 20:36:05 +03:00
Merge pull request #475 from mll-lab/nodelist-offsets
Use foreach for iterating over NodeList
This commit is contained in:
commit
22e3b0e981
@ -114,9 +114,8 @@ class NodeList implements ArrayAccess, IteratorAggregate, Countable
|
|||||||
*/
|
*/
|
||||||
public function getIterator()
|
public function getIterator()
|
||||||
{
|
{
|
||||||
$count = count($this->nodes);
|
foreach ($this->nodes as $key => $_) {
|
||||||
for ($i = 0; $i < $count; $i++) {
|
yield $this->offsetGet($key);
|
||||||
yield $this->offsetGet($i);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user