21 lines
342 B
Plaintext
21 lines
342 B
Plaintext
<?php
|
|
|
|
namespace Nette\Utils;
|
|
|
|
/**
|
|
* @implements \IteratorAggregate<array-key, mixed>
|
|
* @implements \ArrayAccess<array-key, mixed>
|
|
*/
|
|
class ArrayHash implements \ArrayAccess, \IteratorAggregate
|
|
{
|
|
|
|
/**
|
|
* @return \RecursiveArrayIterator<array-key, mixed>
|
|
*/
|
|
public function getIterator(): \RecursiveArrayIterator
|
|
{
|
|
// nothing
|
|
}
|
|
|
|
}
|