1 | <?php |
||
12 | class FileExplorer extends \RecursiveFilterIterator implements \Iterator |
||
13 | { |
||
14 | /** |
||
15 | * A bitwise flag to have FileExplorer ignore all files unless its been explicitly included; all other files will be |
||
16 | * ignored. |
||
17 | */ |
||
18 | const INCLUDE_ONLY_FILES = 0x1; |
||
19 | |||
20 | /** |
||
21 | * A bitwise flag to have FileExplorer search files starting with a period as well. |
||
22 | */ |
||
23 | const ALLOW_DOT_FILES = 0x2; |
||
24 | |||
25 | /** |
||
26 | * A list of common version control folders to ignore. |
||
27 | * |
||
28 | * The following folders should be ignored explicitly by the end user. Their usage isn't as popular so adding more |
||
29 | * conditions to loop through will only slow down FileExplorer. |
||
30 | * |
||
31 | * - 'CVS' |
||
32 | * - '_darcs' |
||
33 | * - '.arch-params' |
||
34 | * - '.monotone' |
||
35 | * - '.bzr' |
||
36 | * |
||
37 | * @var string[] |
||
38 | */ |
||
39 | public static $vcsPatterns = array('.git', '.hg', '.svn', '_svn'); |
||
40 | |||
41 | /** |
||
42 | * A list of phrases to exclude from the search. |
||
43 | * |
||
44 | * @var string[] |
||
45 | */ |
||
46 | private $excludes; |
||
47 | |||
48 | /** |
||
49 | * A list of phrases to explicitly include in the search. |
||
50 | * |
||
51 | * @var string[] |
||
52 | */ |
||
53 | private $includes; |
||
54 | |||
55 | /** |
||
56 | * The bitwise sum of the flags applied to this FileExplorer instance. |
||
57 | * |
||
58 | * @var int|null |
||
59 | */ |
||
60 | private $flags; |
||
61 | |||
62 | /** |
||
63 | * FileExplorer constructor. |
||
64 | * |
||
65 | * @param \RecursiveIterator $iterator |
||
66 | * @param array $excludes |
||
67 | * @param array $includes |
||
68 | * @param int|null $flags |
||
69 | */ |
||
70 | 36 | public function __construct(\RecursiveIterator $iterator, array $excludes = array(), array $includes = array(), $flags = null) |
|
78 | |||
79 | /** |
||
80 | * @return string |
||
81 | */ |
||
82 | public function __toString() |
||
86 | |||
87 | /** |
||
88 | * {@inheritdoc} |
||
89 | */ |
||
90 | 36 | public function accept() |
|
96 | |||
97 | /** |
||
98 | * Get the current SplFileInfo object. |
||
99 | * |
||
100 | * @return SplFileInfo |
||
101 | */ |
||
102 | 36 | public function current() |
|
113 | |||
114 | /** |
||
115 | * {@inheritdoc} |
||
116 | */ |
||
117 | public function getChildren() |
||
126 | |||
127 | /** |
||
128 | * Get an Iterator with all of the files that have met the search requirements. |
||
129 | * |
||
130 | * @return \RecursiveIteratorIterator |
||
131 | */ |
||
132 | 36 | public function getExplorer() |
|
136 | |||
137 | /** |
||
138 | * Check whether or not a relative file path matches the definition given to this FileExplorer instance. |
||
139 | * |
||
140 | * @param string $filePath |
||
141 | * |
||
142 | * @return bool |
||
143 | */ |
||
144 | 36 | public function matchesPattern($filePath) |
|
163 | |||
164 | /** |
||
165 | * Create an instance of FileExplorer from a directory path as a string. |
||
166 | * |
||
167 | * @param string $folder The path to the folder we're scanning |
||
168 | * @param string[] $excludes |
||
169 | * @param string[] $includes |
||
170 | * @param int|null $flags |
||
171 | * |
||
172 | * @return FileExplorer |
||
173 | */ |
||
174 | 36 | public static function create($folder, $excludes = array(), $includes = array(), $flags = null) |
|
181 | |||
182 | /** |
||
183 | * Search a given string for an array of possible elements. |
||
184 | * |
||
185 | * @param string $haystack |
||
186 | * @param string[] $needle |
||
187 | * @param int $offset |
||
188 | * |
||
189 | * @return bool True if an element from the given array was found in the string |
||
190 | */ |
||
191 | 36 | private static function strpos_array($haystack, $needle, $offset = 0) |
|
213 | |||
214 | /** |
||
215 | * Strip the current working directory from an absolute path. |
||
216 | * |
||
217 | * @param string $path An absolute path |
||
218 | * |
||
219 | * @return string |
||
220 | */ |
||
221 | 36 | private static function getRelativePath($path) |
|
225 | |||
226 | /** |
||
227 | * A vfsStream friendly way of getting the realpath() of something. |
||
228 | * |
||
229 | * @param string $path |
||
230 | * |
||
231 | * @return string |
||
232 | */ |
||
233 | 36 | private static function realpath($path) |
|
242 | } |
||
243 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..