```php public function createFromRequest(Request $request, bool $normalization, array $extractedAttributes = null) : array { $context = $this->decorated->createFromRequest($request, $normalization, $extractedAttributes); $subject = $request->attributes->get('data'); if ($subject instanceof Book && isset($context['groups']) && $this->authorizationChecker->isGranted('ROLE_ADMIN') && false === $normalization) { $context['groups'][] = 'admin_input'; } return $context; } ``` I've tried to decorate context builder but the `$subject` is always null.