diff options
author | Remi Collet <remi@remirepo.net> | 2018-11-22 10:04:38 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2018-11-22 10:04:38 +0100 |
commit | 2424e9380947a5bcfb9ee8d63b26fe83b4227a73 (patch) | |
tree | 51a08f5eeacb6df390886fa8977de577340db6dd /php-doctrine-orm-php73.patch | |
parent | 3cd9d08dd8200462615c1e53c790d741ba8096b1 (diff) |
v2.6.3
Diffstat (limited to 'php-doctrine-orm-php73.patch')
-rw-r--r-- | php-doctrine-orm-php73.patch | 31 |
1 files changed, 0 insertions, 31 deletions
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 <cyril.pascal_github@m4x.org> -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])) { |