Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove call to deprecated setCacheDriver() method #1306

Merged
merged 1 commit into from
Mar 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions CacheWarmer/DoctrineMetadataCacheWarmer.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
use LogicException;
use Symfony\Bundle\FrameworkBundle\CacheWarmer\AbstractPhpFileCacheWarmer;
use Symfony\Component\Cache\Adapter\ArrayAdapter;
use Symfony\Component\Cache\DoctrineProvider;

use function method_exists;

class DoctrineMetadataCacheWarmer extends AbstractPhpFileCacheWarmer
{
Expand Down Expand Up @@ -47,7 +48,13 @@ protected function doWarmUp($cacheDir, ArrayAdapter $arrayAdapter): bool
throw new LogicException('DoctrineMetadataCacheWarmer must load metadata first, check priority of your warmers.');
}

$metadataFactory->setCacheDriver(new DoctrineProvider($arrayAdapter));
if (method_exists($metadataFactory, 'setCache')) {
$metadataFactory->setCache($arrayAdapter);
} else {
// BC with doctrine/persistence < 2.2
$metadataFactory->setCacheDriver(new DoctrineProvider($arrayAdapter));
}

$metadataFactory->getAllMetadata();

return true;
Expand Down