Skip to content

Commit f42feed

Browse files
committed
fix(config): "adapter" does not support in PHP
1 parent dddc2aa commit f42feed

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

config/packages/doctrine.php

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,7 @@
107107
]);
108108

109109
$cache = $frameworkConfig->cache();
110-
$cache->pool($systemCachePool, [
111-
'adapter' => 'cache.system',
112-
]);
113-
$cache->pool($resultCachePool, [
114-
'adapter' => 'cache.app',
115-
]);
110+
$cache->pool($systemCachePool)->adapters(['cache.system']);
111+
$cache->pool($resultCachePool)->adapters(['cache.app']);
116112
}
117113
};

0 commit comments

Comments
 (0)