From a3a773d4ff2234bb15f3f63f921b2536b3078c50 Mon Sep 17 00:00:00 2001 From: Mike Qian Date: Wed, 9 Feb 2022 12:27:00 -0800 Subject: [PATCH] Update hhi for ReflectionProperty::{get,set}Value Reviewed By: oulgen Differential Revision: D34101846 fbshipit-source-id: 61520370a204305446f872e4ffe2350374120b6e --- hphp/hack/hhi/reflection.hhi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hphp/hack/hhi/reflection.hhi b/hphp/hack/hhi/reflection.hhi index 262defa9868..1b5c254fb10 100644 --- a/hphp/hack/hhi/reflection.hhi +++ b/hphp/hack/hhi/reflection.hhi @@ -253,8 +253,8 @@ class ReflectionProperty implements Reflector { public function __construct($class, string $name)[]; public function __toString()[]; public function getName()[]; - public function getValue($object = null); - public function setValue($object, $value = null); + public function getValue($obj = null)[read_globals]; + public function setValue($obj, $value = null)[globals, write_props]; public function isPublic()[]; public function isPrivate()[]; public function isProtected()[]; -- 2.11.4.GIT