From d4715918172c6dc1ed3c4209fe00577fb231d399 Mon Sep 17 00:00:00 2001 From: Markus Klein <markus.klein@typo3.org> Date: Tue, 14 Jan 2020 14:14:16 +0100 Subject: [PATCH] [BUGFIX] Use correct type annotation for TSFE->pageCache Resolves: #90108 Releases: master, 9.5 Change-Id: I6aded269507fc79f0404cbdbfb79ac0f20b9d2a3 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/62877 Tested-by: TYPO3com <noreply@typo3.com> Tested-by: Steffen Frese <steffenf14@gmail.com> Tested-by: Benni Mack <benni@typo3.org> Reviewed-by: Steffen Frese <steffenf14@gmail.com> Reviewed-by: Benni Mack <benni@typo3.org> --- .../Classes/Controller/TypoScriptFrontendController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php b/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php index bf911e419529..76e3d1302ffb 100644 --- a/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php +++ b/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php @@ -619,7 +619,7 @@ class TypoScriptFrontendController implements LoggerAwareInterface * The page cache object, use this to save pages to the cache and to * retrieve them again * - * @var \TYPO3\CMS\Core\Cache\Backend\AbstractBackend + * @var \TYPO3\CMS\Core\Cache\Frontend\FrontendInterface */ protected $pageCache; -- GitLab