File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -303,7 +303,8 @@ public function accept()
303
303
* @link http://php.net/manual/en/recursivefilteriterator.haschildren.php
304
304
* @return bool true if the inner iterator has children, otherwise false
305
305
*/
306
- public function hasChildren () {
306
+ public function hasChildren ()
307
+ {
307
308
return $ this ->iterator ->hasChildren ();
308
309
}
309
310
@@ -314,15 +315,17 @@ public function hasChildren() {
314
315
* @link http://php.net/manual/en/recursivefilteriterator.getchildren.php
315
316
* @return \RecursiveFilterIterator containing the inner iterator's children.
316
317
*/
317
- public function getChildren () {
318
+ public function getChildren ()
319
+ {
318
320
return new self ($ this ->iterator ->getChildren (), array ());
319
321
}
320
322
321
323
/**
322
324
* @param string $excluded
323
325
* @return string
324
326
*/
325
- private function getPathname ($ excluded ) {
327
+ private function getPathname ($ excluded )
328
+ {
326
329
if (DIRECTORY_SEPARATOR !== $ excluded [0 ]) {
327
330
$ excluded = $ this ->iterator ->getPath () . DIRECTORY_SEPARATOR . $ excluded ;
328
331
}
You can’t perform that action at this time.
0 commit comments