mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-04-03 20:53:30 +03:00
Merge pull request #475 from mll-lab/nodelist-offsets
Use foreach for iterating over NodeList
This commit is contained in:
commit
22e3b0e981
1 changed files with 2 additions and 3 deletions
|
@ -114,9 +114,8 @@ class NodeList implements ArrayAccess, IteratorAggregate, Countable
|
|||
*/
|
||||
public function getIterator()
|
||||
{
|
||||
$count = count($this->nodes);
|
||||
for ($i = 0; $i < $count; $i++) {
|
||||
yield $this->offsetGet($i);
|
||||
foreach ($this->nodes as $key => $_) {
|
||||
yield $this->offsetGet($key);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue