File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -231,15 +231,15 @@ and plural property names::
231
231
232
232
class SomeClass
233
233
{
234
- private $analyses ;
234
+ private $analyzes ;
235
235
private $feet;
236
236
237
- public function addAnalyse (Dummy $analyse )
237
+ public function addAnalyze (Dummy $analyze )
238
238
{
239
239
// ...
240
240
}
241
241
242
- public function removeAnalyse (Dummy $analyse )
242
+ public function removeAnalyze (Dummy $analyze )
243
243
{
244
244
// ...
245
245
}
@@ -256,7 +256,7 @@ and plural property names::
256
256
}
257
257
258
258
// to be writable, both the adder and the remover methods must be defined
259
- $propertyInfo->isWritable(SomeClass::class, 'analyses '); // returns true
259
+ $propertyInfo->isWritable(SomeClass::class, 'analyzes '); // returns true
260
260
$propertyInfo->isWritable(SomeClass::class, 'feet'); // returns true
261
261
262
262
.. versionadded :: 3.2
You can’t perform that action at this time.
0 commit comments