From 488c9e3b2868be5469395d3ff545217456d0b10f Mon Sep 17 00:00:00 2001 From: Stephane DECOCK Date: Thu, 19 Aug 2021 17:01:06 +0200 Subject: [PATCH] Allow to fetch translation with symlink Fixes #107 --- src/Translation/Finder/TranslationFilesFinder.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Translation/Finder/TranslationFilesFinder.php b/src/Translation/Finder/TranslationFilesFinder.php index 914c740..4224511 100644 --- a/src/Translation/Finder/TranslationFilesFinder.php +++ b/src/Translation/Finder/TranslationFilesFinder.php @@ -54,6 +54,7 @@ private function getFiles(string $path): iterable $finder ->ignoreUnreadableDirs() + ->followLinks() ->in($path . '/translations') ;