1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

Fixed typehints and use statements

This commit is contained in:
Jasper N. Brouwer 2014-12-20 14:38:47 +01:00 committed by Marco Pivetta
parent fe21f18991
commit 5c1d1931b7

View file

@ -20,9 +20,9 @@
namespace Doctrine\ORM\Utility; namespace Doctrine\ORM\Utility;
use Doctrine\Common\Persistence\Mapping\ClassMetadata;
use Doctrine\Common\Util\ClassUtils; use Doctrine\Common\Util\ClassUtils;
use Doctrine\ORM\EntityManagerInterface; use Doctrine\ORM\EntityManagerInterface;
use Doctrine\ORM\Mapping\ClassMetadata;
use Doctrine\ORM\Query\QueryException; use Doctrine\ORM\Query\QueryException;
/** /**
@ -49,8 +49,8 @@ class PersisterHelper
$newValue = array(); $newValue = array();
foreach ($value as $itemValue) { foreach ($value as $fieldName => $fieldValue) {
$newValue[] = self::getIndividualValue($itemValue, $em); $newValue[$fieldName] = self::getIndividualValue($fieldValue, $em);
} }
return $newValue; return $newValue;
@ -82,8 +82,6 @@ class PersisterHelper
*/ */
public static function getTypeOfField($fieldName, ClassMetadata $class, EntityManagerInterface $em) public static function getTypeOfField($fieldName, ClassMetadata $class, EntityManagerInterface $em)
{ {
/** @var \Doctrine\ORM\Mapping\ClassMetadataInfo $class */
if (isset($class->fieldMappings[$fieldName])) { if (isset($class->fieldMappings[$fieldName])) {
return $class->fieldMappings[$fieldName]['type']; return $class->fieldMappings[$fieldName]['type'];
} }
@ -113,8 +111,6 @@ class PersisterHelper
*/ */
public static function getTypeOfColumn($columnName, ClassMetadata $class, EntityManagerInterface $em) public static function getTypeOfColumn($columnName, ClassMetadata $class, EntityManagerInterface $em)
{ {
/** @var \Doctrine\ORM\Mapping\ClassMetadataInfo $class */
if (isset($class->fieldNames[$columnName])) { if (isset($class->fieldNames[$columnName])) {
$fieldName = $class->fieldNames[$columnName]; $fieldName = $class->fieldNames[$columnName];
@ -126,7 +122,7 @@ class PersisterHelper
} }
foreach ($class->associationMappings as $assoc) { foreach ($class->associationMappings as $assoc) {
if (!isset($assoc['joinColumns'])) { if ( ! isset($assoc['joinColumns'])) {
continue; continue;
} }