summaryrefslogtreecommitdiffstats
path: root/php-bartlett-php-compatinfo-db-3-rpm.patch
diff options
context:
space:
mode:
Diffstat (limited to 'php-bartlett-php-compatinfo-db-3-rpm.patch')
-rw-r--r--php-bartlett-php-compatinfo-db-3-rpm.patch20
1 files changed, 6 insertions, 14 deletions
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);