Laravel version update
Laravel version update
This commit is contained in:
@@ -80,9 +80,9 @@ class File_Iterator_Factory
|
||||
|
||||
foreach ($paths as $path) {
|
||||
if ($locals = glob($path, GLOB_ONLYDIR)) {
|
||||
$_paths = array_merge($_paths, $locals);
|
||||
$_paths = array_merge($_paths, array_map('realpath', $locals));
|
||||
} else {
|
||||
$_paths[] = $path;
|
||||
$_paths[] = realpath($path);
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -131,7 +131,7 @@ class File_Iterator extends FilterIterator
|
||||
|
||||
/**
|
||||
* @param string $filename
|
||||
* @param array $subString
|
||||
* @param array $subStrings
|
||||
* @param int $type
|
||||
* @return bool
|
||||
* @since Method available since Release 1.1.0
|
||||
|
Reference in New Issue
Block a user