1 | <?php |
||
8 | class GlobStreamWrapper |
||
9 | { |
||
10 | |||
11 | protected $directoryIterator; |
||
12 | |||
13 | protected static $root; |
||
14 | |||
15 | 1 | public static function setRoot($root) |
|
19 | |||
20 | /** |
||
21 | * @param string $path |
||
22 | */ |
||
23 | 1 | protected static function getRootedPath($path) |
|
32 | |||
33 | /** |
||
34 | * @see streamWrapper::dir_opendir() |
||
35 | */ |
||
36 | 1 | public function dir_opendir(string $path, int $options) |
|
45 | |||
46 | /** |
||
47 | * @see streamWrapper::dir_readdir() |
||
48 | */ |
||
49 | 1 | public function dir_readdir() |
|
56 | |||
57 | /** |
||
58 | * @see streamWrapper::dir_rewinddir() |
||
59 | */ |
||
60 | 1 | public function dir_rewinddir() |
|
65 | |||
66 | /** |
||
67 | * @see streamWrapper::dir_closedir() |
||
68 | */ |
||
69 | 1 | public function dir_closedir() |
|
74 | } |
||
75 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.