mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

This is an artifact of the shared implementation with readdir() etc. The method versions should not accept an explicit dir handle, as they work on the dir handle from the object.
24 lines
387 B
PHP
Executable file
24 lines
387 B
PHP
Executable file
<?php
|
|
|
|
/** @generate-function-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() {}
|
|
}
|