Skip to content

Commit

Permalink
fix link
Browse files Browse the repository at this point in the history
  • Loading branch information
theofidry committed Jan 17, 2024
1 parent 307cf62 commit c7baa4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Configuration/ConfigurationFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ private static function retrieveFilesFromPaths(array $paths): iterable
->in($pathsToSearch)
->append($filesToAppend)
->filter(
static fn (SplFileInfo $fileInfo) => $fileInfo->isLink() ? false : null,
static fn (SplFileInfo $fileInfo) => !$fileInfo->isLink(),
)
->sortByName();

Expand Down

0 comments on commit c7baa4b

Please sign in to comment.