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 @@ -350,7 +350,7 @@ configured to enable extra features. To do that you could use the
350
350
:class: `Symfony\\ Component\\ PropertyAccess\\ PropertyAccessorBuilder `::
351
351
352
352
// ...
353
- $accessorBuilder = PropertyAccess::getPropertyAccessorBuilder ();
353
+ $accessorBuilder = PropertyAccess::createPropertyAccessorBuilder ();
354
354
355
355
// Enable magic __call
356
356
$accessorBuilder->enableMagicCall();
@@ -365,7 +365,7 @@ configured to enable extra features. To do that you could use the
365
365
$accessor = $accessorBuilder->getPropertyAccessor();
366
366
367
367
// Or all in one
368
- $accessor = PropertyAccess::getPropertyAccessorBuilder ()
368
+ $accessor = PropertyAccess::createPropertyAccessorBuilder ()
369
369
->enableMagicCall()
370
370
->getPropertyAccessor();
371
371
You can’t perform that action at this time.
0 commit comments