Thanks to visit codestin.com Credit goes to github.com
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.
2 parents 58c0baf + d6b4795 commit e96ebd3Copy full SHA for e96ebd3
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