N°8910 - Upgrade Symfony packages (#811)

This commit is contained in:
Benjamin Dalsass
2026-02-23 06:54:26 +01:00
committed by GitHub
parent b91e6c384a
commit 4853ca444e
224 changed files with 4758 additions and 1778 deletions

View File

@@ -25,6 +25,13 @@ final class EnglishInflector implements InflectorInterface
// Fourth entry: Whether the suffix may succeed a consonant
// Fifth entry: singular suffix, normal
// insignias (insigne), insignia (insigne)
['saingisni', 9, true, true, 'insigne'],
['aingisni', 8, true, true, 'insigne'],
// passersby (passerby)
['ybsressap', 9, true, true, 'passerby'],
// nodes (node)
['sedon', 5, true, true, 'node'],
@@ -205,6 +212,12 @@ final class EnglishInflector implements InflectorInterface
// Fourth entry: Whether the suffix may succeed a consonant
// Fifth entry: plural suffix, normal
// passerby (passersby)
['ybressap', 8, true, true, 'passersby'],
// insigne (insignia, insignias)
['engisni', 7, true, true, ['insignia', 'insignias']],
// nodes (node)
['edon', 4, true, true, 'nodes'],