mirror of
https://github.com/FriendsOfTYPO3/feedit.git
synced 2024-11-22 06:26:09 +01:00
Fix implementation of RequestEnricherInterface
The interface was not imported, and no request was returned in method.
This commit is contained in:
parent
12cf2967d5
commit
3450ed6918
1 changed files with 2 additions and 0 deletions
|
@ -20,6 +20,7 @@ use Psr\Http\Message\ServerRequestInterface;
|
||||||
use TYPO3\CMS\Adminpanel\ModuleApi\AbstractModule;
|
use TYPO3\CMS\Adminpanel\ModuleApi\AbstractModule;
|
||||||
use TYPO3\CMS\Adminpanel\ModuleApi\InitializableInterface;
|
use TYPO3\CMS\Adminpanel\ModuleApi\InitializableInterface;
|
||||||
use TYPO3\CMS\Adminpanel\ModuleApi\PageSettingsProviderInterface;
|
use TYPO3\CMS\Adminpanel\ModuleApi\PageSettingsProviderInterface;
|
||||||
|
use TYPO3\CMS\Adminpanel\ModuleApi\RequestEnricherInterface;
|
||||||
use TYPO3\CMS\Adminpanel\ModuleApi\ResourceProviderInterface;
|
use TYPO3\CMS\Adminpanel\ModuleApi\ResourceProviderInterface;
|
||||||
use TYPO3\CMS\Backend\Routing\UriBuilder;
|
use TYPO3\CMS\Backend\Routing\UriBuilder;
|
||||||
use TYPO3\CMS\Backend\Utility\BackendUtility;
|
use TYPO3\CMS\Backend\Utility\BackendUtility;
|
||||||
|
@ -132,6 +133,7 @@ class EditModule extends AbstractModule implements PageSettingsProviderInterface
|
||||||
*/
|
*/
|
||||||
public function enrich(ServerRequestInterface $request): ServerRequestInterface
|
public function enrich(ServerRequestInterface $request): ServerRequestInterface
|
||||||
{
|
{
|
||||||
|
return $request;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue