Skip to content

Commit

Permalink
Make code php 7.3 lint-compatible doctrine#7325
Browse files Browse the repository at this point in the history
  • Loading branch information
tanasecosminromeo committed Dec 13, 2018
1 parent 810a7ba commit 9a37b55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Doctrine/ORM/UnitOfWork.php
Original file line number Diff line number Diff line change
Expand Up @@ -2633,7 +2633,7 @@ public function createEntity($className, array $data, &$hints = array())
$class->reflFields[$field]->setValue($entity, $data[$field]);
$this->originalEntityData[$oid][$field] = $data[$field];

continue;
break;
}

$associatedId = array();
Expand Down Expand Up @@ -2662,7 +2662,7 @@ public function createEntity($className, array $data, &$hints = array())
$class->reflFields[$field]->setValue($entity, null);
$this->originalEntityData[$oid][$field] = null;

continue;
break;
}

if ( ! isset($hints['fetchMode'][$class->name][$field])) {
Expand Down

0 comments on commit 9a37b55

Please sign in to comment.