We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58c0baf commit d6b4795Copy full SHA for d6b4795
components/property_access/introduction.rst
@@ -327,7 +327,7 @@ instead::
327
328
$person = new Person();
329
330
- if ($accessor->isReadable($person, 'firstName') {
+ if ($accessor->isReadable($person, 'firstName')) {
331
// ...
332
}
333
@@ -338,7 +338,7 @@ method to find out whether a property path can be updated::
338
339
340
341
- if ($accessor->isWritable($person, 'firstName') {
+ if ($accessor->isWritable($person, 'firstName')) {
342
343
344
0 commit comments