1: <?php declare(strict_types=1);
2:
3: namespace Salient\Iterator;
4:
5: use Salient\Iterator\Concern\RecursiveGraphIteratorTrait;
6: use RecursiveIterator;
7:
8: /**
9: * Iterates over the properties of objects and the elements of arrays,
10: * descending into them recursively
11: *
12: * @api
13: *
14: * @implements RecursiveIterator<array-key,mixed>
15: */
16: class RecursiveGraphIterator extends GraphIterator implements RecursiveIterator
17: {
18: use RecursiveGraphIteratorTrait;
19: }
20: