isAllowedProperty example

foreach ($reflectionConstructor->getParameters() as $reflectionParameter) {
            if ($reflectionParameter->getName() === $property) {
                return $reflectionParameter;
            }
        }

        return null;
    }

    public function isReadable(string $class, string $property, array $context = []): ?bool
    {
        if ($this->isAllowedProperty($class$property)) {
            return true;
        }

        return null !== $this->getReadInfo($class$property$context);
    }

    public function isWritable(string $class, string $property, array $context = []): ?bool
    {
        if ($this->isAllowedProperty($class$property, true)) {
            return true;
        }

        [
Home | Imprint | This part of the site doesn't use cookies.