From 2424e9380947a5bcfb9ee8d63b26fe83b4227a73 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 22 Nov 2018 10:04:38 +0100 Subject: v2.6.3 --- php-doctrine-orm-php73.patch | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 php-doctrine-orm-php73.patch (limited to 'php-doctrine-orm-php73.patch') diff --git a/php-doctrine-orm-php73.patch b/php-doctrine-orm-php73.patch deleted file mode 100644 index d0b3f2b..0000000 --- a/php-doctrine-orm-php73.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 07fc401d255a4cdb4a557147d1c8a3fc7a0c718d Mon Sep 17 00:00:00 2001 -From: Cyril PASCAL -Date: Thu, 26 Jul 2018 14:32:52 +0200 -Subject: [PATCH] Make code php 7.3 lint-compatible - ---- - lib/Doctrine/ORM/UnitOfWork.php | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/lib/Doctrine/ORM/UnitOfWork.php b/lib/Doctrine/ORM/UnitOfWork.php -index 6767e7ef31..c79afd084e 100644 ---- a/lib/Doctrine/ORM/UnitOfWork.php -+++ b/lib/Doctrine/ORM/UnitOfWork.php -@@ -2715,7 +2715,7 @@ public function createEntity($className, array $data, &$hints = []) - $class->reflFields[$field]->setValue($entity, $data[$field]); - $this->originalEntityData[$oid][$field] = $data[$field]; - -- continue; -+ break; - } - - $associatedId = []; -@@ -2744,7 +2744,7 @@ public function createEntity($className, array $data, &$hints = []) - $class->reflFields[$field]->setValue($entity, null); - $this->originalEntityData[$oid][$field] = null; - -- continue; -+ break; - } - - if ( ! isset($hints['fetchMode'][$class->name][$field])) { -- cgit