#1178 - s/getValue/getIdentifierValues
This commit is contained in:
parent
584839d38a
commit
131a39bad4
2 changed files with 3 additions and 3 deletions
|
@ -864,7 +864,7 @@ class BasicEntityPersister implements EntityPersister
|
||||||
list($params, $types) = $valueVisitor->getParamsAndTypes();
|
list($params, $types) = $valueVisitor->getParamsAndTypes();
|
||||||
|
|
||||||
foreach ($params as $param) {
|
foreach ($params as $param) {
|
||||||
$sqlParams[] = PersisterHelper::getValue($param, $this->em);
|
$sqlParams[] = PersisterHelper::getIdentifierValues($param, $this->em);
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($types as $type) {
|
foreach ($types as $type) {
|
||||||
|
@ -1805,7 +1805,7 @@ class BasicEntityPersister implements EntityPersister
|
||||||
}
|
}
|
||||||
|
|
||||||
$types[] = $this->getType($criterion['field'], $criterion['value'], $criterion['class']);
|
$types[] = $this->getType($criterion['field'], $criterion['value'], $criterion['class']);
|
||||||
$params[] = PersisterHelper::getValue($criterion['value'], $this->em);
|
$params[] = PersisterHelper::getIdentifierValues($criterion['value'], $this->em);
|
||||||
}
|
}
|
||||||
|
|
||||||
return array($params, $types);
|
return array($params, $types);
|
||||||
|
|
|
@ -140,7 +140,7 @@ class PersisterHelper
|
||||||
*
|
*
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
public static function getValue($value, EntityManagerInterface $em)
|
public static function getIdentifierValues($value, EntityManagerInterface $em)
|
||||||
{
|
{
|
||||||
if ( ! is_array($value)) {
|
if ( ! is_array($value)) {
|
||||||
return self::getIndividualValue($value, $em);
|
return self::getIndividualValue($value, $em);
|
||||||
|
|
Loading…
Add table
Reference in a new issue