mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
25 lines
384 B
PHP
Executable File
25 lines
384 B
PHP
Executable File
<?php
|
|
|
|
/** @generate-class-entries */
|
|
|
|
class Directory
|
|
{
|
|
/**
|
|
* @return void
|
|
* @implementation-alias closedir
|
|
*/
|
|
public function close() {}
|
|
|
|
/**
|
|
* @return void
|
|
* @implementation-alias rewinddir
|
|
*/
|
|
public function rewind() {}
|
|
|
|
/**
|
|
* @return string|false
|
|
* @implementation-alias readdir
|
|
*/
|
|
public function read() {}
|
|
}
|