Auth2FA/vendor/phpstan/phpstan-nette/stubs/Utils/ArrayHash.stub

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
}
}