I am trying to check the Tika setup using the the backend report "Installed extraction services", however, it does not show up in the backend reports module. As far as I see, the report is simply not registered in a Services.yaml file, and the old $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['reports'] registration is not supported anymore.
If I however try to manually add the ServicesListReport to a new Services.yaml file, I end up with Fatal error: Declaration of Causal\Extractor\Report\ServicesListReport::getReport() must be compatible with TYPO3\CMS\Reports\ReportInterface::getReport(): string, as the proper return type is missing.
TYPO3: 12.4.14 PHP: 8.3.4 MariaDB: 10.11
I am trying to check the Tika setup using the the backend report "Installed extraction services", however, it does not show up in the backend reports module. As far as I see, the report is simply not registered in a
Services.yaml
file, and the old$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['reports']
registration is not supported anymore.If I however try to manually add the
ServicesListReport
to a newServices.yaml
file, I end up withFatal error: Declaration of Causal\Extractor\Report\ServicesListReport::getReport() must be compatible with TYPO3\CMS\Reports\ReportInterface::getReport(): string
, as the proper return type is missing.