Auth2FA/vendor/phpstan/phpstan-nette/stubs/Database/Table/ActiveRow.stub

20 lines
323 B
Plaintext

<?php
namespace Nette\Database\Table;
use Traversable;
/**
* @phpstan-implements \IteratorAggregate<int, array<string, mixed>>
*/
class ActiveRow implements \IteratorAggregate
{
/**
* @phpstan-return \ArrayIterator<int, array<string, mixed>>
*/
public function getIterator(): \ArrayIterator
{
// nothing
}
}