File tree 1 file changed +2
-2
lines changed
components/property_access
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
363
363
$accessorBuilder->disableMagicCall();
364
364
365
365
// Check if magic __call handling is enabled
366
- $accessorBuilder->isMagicCallEnabled() // true or false
366
+ $accessorBuilder->isMagicCallEnabled(); // true or false
367
367
368
368
// At the end get the configured property accessor
369
369
$accessor = $accessorBuilder->getPropertyAccessor();
@@ -376,7 +376,7 @@ configured to enable extra features. To do that you could use the
376
376
Or you can pass parameters directly to the constructor (not the recommended way)::
377
377
378
378
// ...
379
- $accessor = new PropertyAccessor(true) // this enables handling of magic __call
379
+ $accessor = new PropertyAccessor(true); // this enables handling of magic __call
380
380
381
381
382
382
.. _Packagist : https://packagist.org/packages/symfony/property-access
You can’t perform that action at this time.
0 commit comments