---
title: "Feature: #84466 - Request aware interfaces added to reports"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-84466"
source: "Changelog/9.2/Feature-84466-RequestAwareInterfacesAddedToReports.rst"
typo3-version: "9.2"
typo3-major: 9
type: "feature"
issue: 84466
forge: "https://forge.typo3.org/issues/84466"
tags: ["Backend", "PHP-API", "ext:reports"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Feature: #84466 - Request aware interfaces added to reports {#feature-84466}

See [forge#84466](https://forge.typo3.org/issues/84466)

## Description {#description}

Two new interfaces where added to mark reports and status providers as request aware:

-   `\TYPO3\CMS\Reports\RequestAwareReportInterface` (extends `\TYPO3\CMS\Reports\ReportInterface`)
-   `\TYPO3\CMS\Reports\RequestAwareStatusProviderInterface` (extends `\TYPO3\CMS\Reports\StatusProviderInterface`)

Both interfaces allow reports or status providers to receive an optional PSR-7 server request argument for their
respective interface methods:

-   `getReport()`
-   `getStatus()`

## Impact {#impact}

Reports and status providers can now cleanly access information from the current server request.
They only need to implement one of the interfaces to get the current server request injected.
