@@ -14,8 +14,8 @@ final class PortedInflector
14
14
*
15
15
* @var array<string, mixed[]>
16
16
*/
17
- protected static $ _plural = array (
18
- 'rules ' => array (
17
+ private static $ _plural = [
18
+ 'rules ' => [
19
19
'/(s)tatus$/i ' => '\1tatuses ' ,
20
20
'/(quiz)$/i ' => '\1zes ' ,
21
21
'/^(ox)$/i ' => '\1\2en ' ,
@@ -38,8 +38,8 @@ final class PortedInflector
38
38
'/s$/ ' => 's ' ,
39
39
'/^$/ ' => '' ,
40
40
'/$/ ' => 's ' ,
41
- ) ,
42
- 'uninflected ' => array (
41
+ ] ,
42
+ 'uninflected ' => [
43
43
'.*[nrlm]ese ' ,
44
44
'.*data ' ,
45
45
'.*deer ' ,
@@ -50,9 +50,9 @@ final class PortedInflector
50
50
'.*sheep ' ,
51
51
'people ' ,
52
52
'feedback ' ,
53
- 'stadia '
54
- ) ,
55
- 'irregular ' => array (
53
+ 'stadia ' ,
54
+ ] ,
55
+ 'irregular ' => [
56
56
'atlas ' => 'atlases ' ,
57
57
'beef ' => 'beefs ' ,
58
58
'brief ' => 'briefs ' ,
@@ -92,16 +92,16 @@ final class PortedInflector
92
92
'tooth ' => 'teeth ' ,
93
93
'goose ' => 'geese ' ,
94
94
'foot ' => 'feet ' ,
95
- 'sieve ' => 'sieves '
96
- )
97
- ) ;
95
+ 'sieve ' => 'sieves ' ,
96
+ ],
97
+ ] ;
98
98
99
99
/**
100
100
* Words that should not be inflected
101
101
*
102
102
* @var array
103
103
*/
104
- protected static $ _uninflected = array (
104
+ private static $ _uninflected = [
105
105
'Amoyese ' ,
106
106
'bison ' ,
107
107
'Borghese ' ,
@@ -181,15 +181,15 @@ final class PortedInflector
181
181
'Wenchowese ' ,
182
182
'whiting ' ,
183
183
'wildebeest ' ,
184
- 'Yengeese '
185
- ) ;
184
+ 'Yengeese ' ,
185
+ ] ;
186
186
187
187
/**
188
188
* Method cache array.
189
189
*
190
190
* @var array
191
191
*/
192
- protected static $ _cache = array () ;
192
+ private static $ _cache = [] ;
193
193
194
194
/**
195
195
* Returns corresponding table name for given model $className. ("people" for the model class "Person").
@@ -200,7 +200,7 @@ final class PortedInflector
200
200
*/
201
201
public static function tableize ($ className )
202
202
{
203
- return PortedInflector ::pluralize (PortedInflector ::underscore ($ className ));
203
+ return self ::pluralize (self ::underscore ($ className ));
204
204
}
205
205
206
206
/**
@@ -216,18 +216,18 @@ public static function pluralize($word)
216
216
return static ::$ _cache ['pluralize ' ][$ word ];
217
217
}
218
218
219
- if (!isset (static ::$ _plural ['merged ' ]['irregular ' ])) {
219
+ if (! isset (static ::$ _plural ['merged ' ]['irregular ' ])) {
220
220
static ::$ _plural ['merged ' ]['irregular ' ] = static ::$ _plural ['irregular ' ];
221
221
}
222
222
223
- if (!isset (static ::$ _plural ['merged ' ]['uninflected ' ])) {
223
+ if (! isset (static ::$ _plural ['merged ' ]['uninflected ' ])) {
224
224
static ::$ _plural ['merged ' ]['uninflected ' ] = array_merge (
225
225
static ::$ _plural ['uninflected ' ],
226
226
static ::$ _uninflected
227
227
);
228
228
}
229
229
230
- if (!isset (static ::$ _plural ['cacheUninflected ' ]) || !isset (static ::$ _plural ['cacheIrregular ' ])) {
230
+ if (! isset (static ::$ _plural ['cacheUninflected ' ]) || ! isset (static ::$ _plural ['cacheIrregular ' ])) {
231
231
static ::$ _plural ['cacheUninflected ' ] = '(?: ' . implode (
232
232
'| ' ,
233
233
static ::$ _plural ['merged ' ]['uninflected ' ]
0 commit comments