Skip to content

Commit

Permalink
Merge pull request #241 from iurciuc/2.0.x
Browse files Browse the repository at this point in the history
Correct pluralization of axis
  • Loading branch information
malarzm committed Jan 15, 2024
2 parents 36218ff + c2b0320 commit 2930cd5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/Doctrine/Inflector/Rules/English/Inflectible.php
Expand Up @@ -93,6 +93,7 @@ public static function getPlural(): iterable
public static function getIrregular(): iterable
{
yield new Substitution(new Word('atlas'), new Word('atlases'));
yield new Substitution(new Word('axis'), new Word('axes'));
yield new Substitution(new Word('axe'), new Word('axes'));
yield new Substitution(new Word('beef'), new Word('beefs'));
yield new Substitution(new Word('blouse'), new Word('blouses'));
Expand Down
Expand Up @@ -390,6 +390,7 @@ public function dataSingularsUninflectedWhenSingularized(): array
['fascia', 'fascium'],
['status', 'statu'],
['campus', 'campu'],
['axis', 'axes'],
];
}

Expand Down

0 comments on commit 2930cd5

Please sign in to comment.