1 | <?php |
||
13 | class StorageFrameworkManagerController extends AbstractController |
||
14 | { |
||
15 | /** |
||
16 | * @var BackendTemplateView |
||
17 | */ |
||
18 | protected $view; |
||
19 | |||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $defaultViewObjectName = BackendTemplateView::class; |
||
24 | |||
25 | /** |
||
26 | * @var CacheManagerService |
||
27 | */ |
||
28 | protected $cacheManagerService; |
||
29 | |||
30 | public function indexAction(): void |
||
43 | |||
44 | /** |
||
45 | * @param ServerRequestInterface $request |
||
46 | * @return ResponseInterface |
||
47 | * @throws \TYPO3\CMS\Extbase\Mvc\Exception\InvalidExtensionNameException |
||
48 | */ |
||
49 | public function session(ServerRequestInterface $request): ResponseInterface |
||
63 | |||
64 | /** |
||
65 | * @param ServerRequestInterface $request |
||
66 | * @return ResponseInterface |
||
67 | * @throws \TYPO3\CMS\Core\Cache\Exception\NoSuchCacheException |
||
68 | * @throws \TYPO3\CMS\Extbase\Mvc\Exception\InvalidExtensionNameException |
||
69 | */ |
||
70 | public function caching(ServerRequestInterface $request): ResponseInterface |
||
86 | |||
87 | /** |
||
88 | * @param CacheManagerService $cacheManagerService |
||
89 | */ |
||
90 | public function injectCacheManagerService(CacheManagerService $cacheManagerService): void |
||
94 | } |
||
95 |