You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** @deprecated Since 2.2, use {@see getMetadataCache()} instead. */
279
280
publicfunctiongetMetadataCacheImpl(): ?Cache
280
281
{
282
+
if (! class_exists(DoctrineProvider::class)) {
283
+
thrownewLogicException('The "doctrine/cache" package is deprecated and no longer required by "doctrine/mongodb-odm". Use "getMetadataCache" instead.');
284
+
}
285
+
281
286
trigger_deprecation(
282
287
'doctrine/mongodb-odm',
283
288
'2.2',
@@ -289,6 +294,7 @@ public function getMetadataCacheImpl(): ?Cache
0 commit comments