Skip to content

Commit c954688

Browse files
Fix merge
1 parent 3300775 commit c954688

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Inflector/FrenchInflector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public function singularize(string $plural): array
119119
return [$plural];
120120
}
121121

122-
foreach (self::$singularizeRegexp as $rule) {
122+
foreach (self::SINGULARIZE_REGEXP as $rule) {
123123
[$regexp, $replace] = $rule;
124124

125125
if (1 === preg_match($regexp, $plural)) {

0 commit comments

Comments
 (0)