21 lines
319 B
Plaintext
21 lines
319 B
Plaintext
<?php
|
|
|
|
namespace Nette\Utils;
|
|
|
|
/**
|
|
* @implements \IteratorAggregate<int, self|string>
|
|
* @implements \ArrayAccess<int, self|string>
|
|
*/
|
|
class Html implements \ArrayAccess, \IteratorAggregate
|
|
{
|
|
|
|
/**
|
|
* @return \ArrayIterator<int, self|string>
|
|
*/
|
|
public function getIterator(): \ArrayIterator
|
|
{
|
|
// nothing
|
|
}
|
|
|
|
}
|