From dbba41a335efb39df54c120df6b5e232c7a148d2 Mon Sep 17 00:00:00 2001 From: Alex Luneburg Date: Fri, 28 Nov 2014 09:26:17 +1100 Subject: [PATCH] Add missing semicolons to PropertyAccess examples --- components/property_access/introduction.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/property_access/introduction.rst b/components/property_access/introduction.rst index 8d6492c8d8e..21d007545dd 100644 --- a/components/property_access/introduction.rst +++ b/components/property_access/introduction.rst @@ -363,7 +363,7 @@ configured to enable extra features. To do that you could use the $accessorBuilder->disableMagicCall(); // Check if magic __call handling is enabled - $accessorBuilder->isMagicCallEnabled() // true or false + $accessorBuilder->isMagicCallEnabled(); // true or false // At the end get the configured property accessor $accessor = $accessorBuilder->getPropertyAccessor(); @@ -376,7 +376,7 @@ configured to enable extra features. To do that you could use the Or you can pass parameters directly to the constructor (not the recommended way):: // ... - $accessor = new PropertyAccessor(true) // this enables handling of magic __call + $accessor = new PropertyAccessor(true); // this enables handling of magic __call .. _Packagist: https://packagist.org/packages/symfony/property-access