20 lines
323 B
Plaintext
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
|
|
}
|
|
}
|