summaryrefslogtreecommitdiffstats
path: root/php-bartlett-php-compatinfo-db-3-rpm.patch
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2021-03-11 15:40:27 +0100
committerRemi Collet <remi@remirepo.net>2021-03-11 15:40:27 +0100
commit09420d01c17cd98fbf2e928595b60faace057d63 (patch)
tree261143ede6d7e0f757c1e9ca6688dda10a2a3ab0 /php-bartlett-php-compatinfo-db-3-rpm.patch
parent4e30cd7f3ae736e83a5e2a4a27460388ed1e7da0 (diff)
switch back in production mode, and add a proxies directory
from https://github.com/llaville/php-compatinfo-db/pull/67
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);