Skip to content

Commit

Permalink
chore: PropertyAccess - fix typo in DocBlock
Browse files Browse the repository at this point in the history
  • Loading branch information
keradus authored and nicolas-grekas committed Jan 10, 2025
1 parent e0fc978 commit 83e46f0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions PropertyAccessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ class PropertyAccessor implements PropertyAccessorInterface
* Should not be used by application code. Use
* {@link PropertyAccess::createPropertyAccessor()} instead.
*
* @param int $magicMethods A bitwise combination of the MAGIC_* constants
* to specify the allowed magic methods (__get, __set, __call)
* or self::DISALLOW_MAGIC_METHODS for none
* @param int $throw A bitwise combination of the THROW_* constants
* to specify when exceptions should be thrown
* @param int $magicMethodsFlags A bitwise combination of the MAGIC_* constants
* to specify the allowed magic methods (__get, __set, __call)
* or self::DISALLOW_MAGIC_METHODS for none
* @param int $throw A bitwise combination of the THROW_* constants
* to specify when exceptions should be thrown
*/
public function __construct(
private int $magicMethodsFlags = self::MAGIC_GET | self::MAGIC_SET,
Expand Down

0 comments on commit 83e46f0

Please sign in to comment.