Skip to content

Commit 309b28f

Browse files
Merge branch '7.4' into 8.0
* 7.4: [PhpUnitBridge] Patch phpunit to clear php8.5 deprecation [ROUTING] Fix Typo in CHANGELOG.md Minor tweaks [Routing] Add possibility to create a request context with parameters directly [Mailer][Sendgrid] Add suppression groups support [Routing] allow setting multiple envs in `#[Route]` attribute fix session cookie options assertions on PHP 8.5 [HttpFoundation] Add new MIME type mappings to `getMimeTypes()`` use non-deprecated DBAL-API when available [Notifier][Discord] fix test `createProvider` in `DiscordTransportFactoryTest` [Security] Add `$methods` support to `#[IsGranted]` to restrict access by HTTP method fix tests [String] Fix issues singular [Notifier][Telegram] Add TelegramOptions::messageThreadId() [Console] Fix name/alias/usages when an invokable command has an alias [Intl] Take timezoneTypes’ ianaMap into account [WebProfilerBundle] Hide WDT clearer when it is hidden [Notifier][Discord] Add `DiscordBotTransport`
2 parents 908a6af + e469734 commit 309b28f

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

Inflector/EnglishInflector.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ final class EnglishInflector implements InflectorInterface
2828
// bacteria (bacterium)
2929
['airetcab', 8, true, true, 'bacterium'],
3030

31+
// issues (issue)
32+
['seussi', 6, true, true, 'issue'],
33+
3134
// corpora (corpus)
3235
['aroproc', 7, true, true, 'corpus'],
3336

Tests/Inflector/EnglishInflectorTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ public static function singularizeProvider()
104104
['indices', ['index', 'indix', 'indice']],
105105
['ions', 'ion'],
106106
['irises', ['iris', 'irise', 'irisis']],
107+
['issues', 'issue'],
107108
['kisses', 'kiss'],
108109
['knives', 'knife'],
109110
['lamps', 'lamp'],
@@ -263,6 +264,7 @@ public static function pluralizeProvider()
263264
['index', ['indicies', 'indexes']],
264265
['ion', 'ions'],
265266
['iris', 'irises'],
267+
['issue', 'issues'],
266268
['kiss', 'kisses'],
267269
['knife', 'knives'],
268270
['lamp', 'lamps'],

0 commit comments

Comments
 (0)