Skip to content

Commit 47070b7

Browse files
minor symfony#59466 bug/docs: PropertyAccess - fix typo in DocBlock (keradus)
This PR was submitted for the 7.3 branch but it was merged into the 7.1 branch instead. Discussion ---------- bug/docs: PropertyAccess - fix typo in DocBlock | Q | A | ------------- | --- | Branch? | 7.1 | Bug fix? | yes (counting the docs as docs-bug?) | New feature? | no | Deprecations? | no | Issues | no | License | MIT Commits ------- 9f956d7 chore: PropertyAccess - fix typo in DocBlock
2 parents af68b6e + 9f956d7 commit 47070b7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Symfony/Component/PropertyAccess/PropertyAccessor.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ class PropertyAccessor implements PropertyAccessorInterface
7272
* Should not be used by application code. Use
7373
* {@link PropertyAccess::createPropertyAccessor()} instead.
7474
*
75-
* @param int $magicMethods A bitwise combination of the MAGIC_* constants
76-
* to specify the allowed magic methods (__get, __set, __call)
77-
* or self::DISALLOW_MAGIC_METHODS for none
78-
* @param int $throw A bitwise combination of the THROW_* constants
79-
* to specify when exceptions should be thrown
75+
* @param int $magicMethodsFlags A bitwise combination of the MAGIC_* constants
76+
* to specify the allowed magic methods (__get, __set, __call)
77+
* or self::DISALLOW_MAGIC_METHODS for none
78+
* @param int $throw A bitwise combination of the THROW_* constants
79+
* to specify when exceptions should be thrown
8080
*/
8181
public function __construct(
8282
private int $magicMethodsFlags = self::MAGIC_GET | self::MAGIC_SET,

0 commit comments

Comments
 (0)