From 8430aa07120bf6815af58022b516e88bc7b7bb28 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Sat, 11 Jun 2016 12:21:16 +0200 Subject: [PATCH] [PropertyAccess] add missing argument PHPdoc --- src/Symfony/Component/PropertyAccess/PropertyAccess.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Symfony/Component/PropertyAccess/PropertyAccess.php b/src/Symfony/Component/PropertyAccess/PropertyAccess.php index 6f27408cab..9f08bc807f 100644 --- a/src/Symfony/Component/PropertyAccess/PropertyAccess.php +++ b/src/Symfony/Component/PropertyAccess/PropertyAccess.php @@ -22,6 +22,7 @@ final class PropertyAccess * Creates a property accessor with the default configuration. * * @param bool $throwExceptionOnInvalidIndex + * @param bool $magicCall * * @return PropertyAccessor The new property accessor */ @@ -34,6 +35,7 @@ final class PropertyAccess * Creates a property accessor builder. * * @param bool $enableExceptionOnInvalidIndex + * @param bool $enableMagicCall * * @return PropertyAccessorBuilder The new property accessor builder */