File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
components/property_access Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -363,7 +363,7 @@ configured to enable extra features. To do that you could use the
363363 $accessorBuilder->disableMagicCall();
364364
365365 // Check if magic __call handling is enabled
366- $accessorBuilder->isMagicCallEnabled() // true or false
366+ $accessorBuilder->isMagicCallEnabled(); // true or false
367367
368368 // At the end get the configured property accessor
369369 $accessor = $accessorBuilder->getPropertyAccessor();
@@ -376,7 +376,7 @@ configured to enable extra features. To do that you could use the
376376Or you can pass parameters directly to the constructor (not the recommended way)::
377377
378378 // ...
379- $accessor = new PropertyAccessor(true) // this enables handling of magic __call
379+ $accessor = new PropertyAccessor(true); // this enables handling of magic __call
380380
381381
382382.. _Packagist : https://packagist.org/packages/symfony/property-access
You can’t perform that action at this time.
0 commit comments