aboutsummaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2025-10-01 20:21:24 +0200
committerGravatar GitHub <noreply@github.com> 2025-10-01 20:21:24 +0200
commit2601897c55e2040c21591f7b4f6041f71393346b (patch)
treedcc55c41de5a91540ca61bce121917080fb6da4b /cli
parenta2446e2b309cd1330ca75f943e5f209ea8c3403e (diff)
API optimisation: more streaming of outputs (#8041)
* API optimisation: more streaming of outputs I spotted a memory issue when testing https://github.com/FreshRSS/FreshRSS/pull/7714 Attempt to stream results more, instead of keeping too much in memory. Could be further improved. * Apply suggestions from code review Co-authored-by: Alexis Degrugillier <aledeg@users.noreply.github.com> * Minor whitespace JSON formatting --------- Co-authored-by: Alexis Degrugillier <aledeg@users.noreply.github.com>
Diffstat (limited to 'cli')
-rwxr-xr-xcli/check.translation.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/check.translation.php b/cli/check.translation.php
index 01e90a631..b4c7e6850 100755
--- a/cli/check.translation.php
+++ b/cli/check.translation.php
@@ -199,7 +199,7 @@ function findUsedTranslations(): array {
$iterator = new RecursiveIteratorIterator($directory);
$regex = new RegexIterator($iterator, '/^.+\.(php|phtml)$/i', RecursiveRegexIterator::GET_MATCH);
$usedI18n = [];
- foreach (array_keys(iterator_to_array($regex)) as $file) {
+ foreach ($regex as $file => $value) {
if (!is_string($file) || $file === '') {
continue;
}