Skip to content

Commit bf61658

Browse files
committed
minor #4523 Add missing semicolons to PropertyAccess examples (loonytoons)
This PR was merged into the 2.3 branch. Discussion ---------- Add missing semicolons to PropertyAccess examples | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | 2.3+ | Fixed tickets | none Commits ------- dbba41a Add missing semicolons to PropertyAccess examples
2 parents 0d0b031 + dbba41a commit bf61658

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/property_access/introduction.rst

+2-2
Original file line numberDiff line numberDiff 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
376376
Or 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

0 commit comments

Comments
 (0)