* > */ private static $handlers = []; public function __construct() { self::$handlers = []; } /** * @param class-string $class * @psalm-suppress PossiblyUnusedParam * * @return void */ public function registerClass(string $class) { if (version_compare(PHP_VERSION, '7.1.0') >= 0) { /** * @psalm-suppress UndefinedMethod * * @var \Closure */ $callable = \Closure::fromCallable([$class, 'isPropertyVisible']); } else { $callable = (new \ReflectionClass($class))->getMethod('isPropertyVisible')->getClosure(new $class); if (!$callable) { throw new \UnexpectedValueException('Callable must not be null'); } } foreach ($class::getClassLikeNames() as $fq_classlike_name) { /** @psalm-suppress MixedTypeCoercion */ $this->registerClosure($fq_classlike_name, $callable); } } /** * /** * @param \Closure( * StatementsSource, * string, * string, * bool, * ?Context=, * ?CodeLocation= * ) : ?bool $c * * @return void */ public function registerClosure(string $fq_classlike_name, \Closure $c) { self::$handlers[strtolower($fq_classlike_name)][] = $c; } public function has(string $fq_classlike_name) : bool { return isset(self::$handlers[strtolower($fq_classlike_name)]); } /** * @param array $call_args * * @return ?bool */ public function isPropertyVisible( StatementsSource $source, string $fq_classlike_name, string $property_name, bool $read_mode, Context $context = null, CodeLocation $code_location = null ) { foreach (self::$handlers[strtolower($fq_classlike_name)] as $property_handler) { $property_visible = $property_handler( $source, $fq_classlike_name, $property_name, $read_mode, $context, $code_location ); if ($property_visible !== null) { return $property_visible; } } return null; } }