diff --git a/typo3/sysext/core/Configuration/DefaultConfiguration.php b/typo3/sysext/core/Configuration/DefaultConfiguration.php index e21a6051e85f35b04c897f759a93db48a1be19b7..5fa2e1572bb092af27e14f03be5507872cedfa80 100644 --- a/typo3/sysext/core/Configuration/DefaultConfiguration.php +++ b/typo3/sysext/core/Configuration/DefaultConfiguration.php @@ -132,14 +132,6 @@ return [ ], 'groups' => ['pages'] ], - 'cache_phpcode' => [ - 'frontend' => \TYPO3\CMS\Core\Cache\Frontend\PhpFrontend::class, - 'backend' => \TYPO3\CMS\Core\Cache\Backend\FileBackend::class, - 'options' => [ - 'defaultLifetime' => 0, - ], - 'groups' => ['system'] - ], 'cache_runtime' => [ 'frontend' => \TYPO3\CMS\Core\Cache\Frontend\VariableFrontend::class, 'backend' => \TYPO3\CMS\Core\Cache\Backend\TransientMemoryBackend::class, diff --git a/typo3/sysext/core/Documentation/Changelog/master/Breaking-83243-RemovedCache_phpcodeCacheConfiguration.rst b/typo3/sysext/core/Documentation/Changelog/master/Breaking-83243-RemovedCache_phpcodeCacheConfiguration.rst new file mode 100644 index 0000000000000000000000000000000000000000..fc08c2ee02845ef015c083f46d14bfc73718a3c0 --- /dev/null +++ b/typo3/sysext/core/Documentation/Changelog/master/Breaking-83243-RemovedCache_phpcodeCacheConfiguration.rst @@ -0,0 +1,26 @@ +.. include:: ../../Includes.txt + +============================================================ +Breaking: #83243 - Removed cache_phpcode cache configuration +============================================================ + +See :issue:`83243` + +Description +=========== + +The Caching Framework configuration for `cache_phpcode` is unused since TYPO3 6.0 and has been removed without substitution. + + +Impact +====== + +Using `cache_phpcode` will throw a `NoSuchCacheException`. + + +Affected Installations +====================== + +Every installation using a 3rd party extension that still relies on `cache_phpcode` is affected. + +.. index:: PHP-API, NotScanned \ No newline at end of file