From 09420d01c17cd98fbf2e928595b60faace057d63 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 11 Mar 2021 15:40:27 +0100 Subject: switch back in production mode, and add a proxies directory from https://github.com/llaville/php-compatinfo-db/pull/67 --- php-bartlett-php-compatinfo-db-3-rpm.patch | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) (limited to 'php-bartlett-php-compatinfo-db-3-rpm.patch') diff --git a/php-bartlett-php-compatinfo-db-3-rpm.patch b/php-bartlett-php-compatinfo-db-3-rpm.patch index 9806619..b577ac1 100644 --- a/php-bartlett-php-compatinfo-db-3-rpm.patch +++ b/php-bartlett-php-compatinfo-db-3-rpm.patch @@ -127,23 +127,15 @@ diff -up ./tests/Reference/GenericTest.php.rpm ./tests/Reference/GenericTest.php self::$optionalreleases = []; diff --git a/src/Infrastructure/Persistence/Doctrine/EntityManagerFactory.php b/src/Infrastructure/Persistence/Doctrine/EntityManagerFactory.php -index 3bf905d..850956c 100644 +index 9cc1f15..89e557b 100644 --- a/src/Infrastructure/Persistence/Doctrine/EntityManagerFactory.php +++ b/src/Infrastructure/Persistence/Doctrine/EntityManagerFactory.php -@@ -3,6 +3,7 @@ - namespace Bartlett\CompatInfoDb\Infrastructure\Persistence\Doctrine; - - use Doctrine\Common\Cache\Cache; -+use Doctrine\Common\Proxy\AbstractProxyFactory; - use Doctrine\ORM\EntityManager; - use Doctrine\ORM\EntityManagerInterface; - use Doctrine\ORM\ORMException; -@@ -28,7 +29,7 @@ final class EntityManagerFactory - public static function create(array $connection, Cache $cache = null): EntityManagerInterface +@@ -29,7 +29,7 @@ final class EntityManagerFactory { $paths = [implode(DIRECTORY_SEPARATOR, [__DIR__, 'Entity'])]; -- $isDevMode = false; -+ $isDevMode = AbstractProxyFactory::AUTOGENERATE_FILE_NOT_EXISTS; - $proxyDir = null; + $isDevMode = false; +- $proxyDir = null; ++ $proxyDir = dirname(__DIR__, 3) . '/proxies'; $config = Setup::createAnnotationMetadataConfiguration($paths, $isDevMode, $proxyDir, $cache); + return EntityManager::create(self::connection($connection), $config); -- cgit