1 | <?php |
||
14 | class Directory extends Handler |
||
15 | { |
||
16 | /** |
||
17 | * Deletes a directory recursively |
||
18 | * |
||
19 | * @return boolean |
||
20 | */ |
||
21 | public function deleteRecursive() |
||
25 | |||
26 | /** |
||
27 | * Deletes a directory |
||
28 | * |
||
29 | * @param boolean $recursive |
||
30 | * |
||
31 | * @return boolean |
||
32 | */ |
||
33 | public function delete($recursive = false) |
||
50 | |||
51 | /** |
||
52 | * Lists all files in a directory |
||
53 | * |
||
54 | * @param integer $depth |
||
55 | * @param mixed $filter |
||
56 | * @param boolean $asHandlers |
||
57 | * |
||
58 | * @return array |
||
59 | */ |
||
60 | public function listFiles($depth = 0, $filter = null, $asHandlers = false) |
||
64 | |||
65 | /** |
||
66 | * Lists all files in a directory as Handlers |
||
67 | * |
||
68 | * @param integer $depth |
||
69 | * @param mixed $filter |
||
70 | * |
||
71 | * @return array |
||
72 | */ |
||
73 | public function listFileHandlers($depth = 0, $filter = null) |
||
77 | |||
78 | /** |
||
79 | * Lists all directories in a directory |
||
80 | * |
||
81 | * @param integer $depth |
||
82 | * @param mixed $filter |
||
83 | * @param boolean $asHandlers |
||
84 | * |
||
85 | * @return array |
||
86 | */ |
||
87 | public function listDirs($depth = 0, $filter = null, $asHandlers = false) |
||
91 | |||
92 | /** |
||
93 | * Lists all directories in a directory |
||
94 | * |
||
95 | * @param integer $depth |
||
96 | * @param mixed $filter |
||
97 | * |
||
98 | * @return array |
||
99 | */ |
||
100 | public function listDirHandlers($depth = 0, $filter = null) |
||
104 | |||
105 | /** |
||
106 | * Lists all files and directories in a directory |
||
107 | * |
||
108 | * @param integer $depth |
||
109 | * @param mixed $filter |
||
110 | * @param string $type |
||
111 | * @param boolean $asHandlers |
||
112 | * |
||
113 | * @return array |
||
114 | */ |
||
115 | public function listContents($depth = 0, $filter = null, $type = 'all', $asHandlers = false) |
||
216 | } |
||
217 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.