21 lines
306 B
Plaintext
21 lines
306 B
Plaintext
<?php
|
|
|
|
namespace Nette\Http;
|
|
|
|
/**
|
|
* @implements \IteratorAggregate<mixed, mixed>
|
|
* @implements \ArrayAccess<mixed, mixed>
|
|
*/
|
|
class SessionSection implements \IteratorAggregate, \ArrayAccess
|
|
{
|
|
|
|
/**
|
|
* @return \Iterator<mixed, mixed>
|
|
*/
|
|
public function getIterator(): \Iterator
|
|
{
|
|
// nothing
|
|
}
|
|
|
|
}
|