mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
24 lines
209 B
PHP
24 lines
209 B
PHP
<?php
|
|
|
|
class APCUIterator implements Iterator
|
|
{
|
|
public function current()
|
|
{
|
|
}
|
|
|
|
public function next()
|
|
{
|
|
}
|
|
|
|
public function key()
|
|
{
|
|
}
|
|
|
|
public function valid()
|
|
{
|
|
}
|
|
|
|
public function rewind()
|
|
{
|
|
}
|
|
}
|