Auth2FA/vendor/phpstan/phpstan-nette/stubs/Forms/Rules.stub

25 lines
263 B
Plaintext

<?php
namespace Nette\Forms;
class Rule
{
}
/**
* @implements \IteratorAggregate<int, Rule>
*/
class Rules implements \IteratorAggregate
{
/**
* @return \ArrayIterator<int, Rule>
*/
public function getIterator(): \ArrayIterator
{
// nothing
}
}