[2.0] Cleanup.
This commit is contained in:
parent
ee46dba332
commit
832f355a30
1 changed files with 6 additions and 7 deletions
|
@ -827,19 +827,18 @@ final class ClassMetadata
|
||||||
return isset($this->_columnNames[$fieldName]);
|
return isset($this->_columnNames[$fieldName]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param <type> $entity
|
||||||
|
* @param <type> $field
|
||||||
|
* @param <type> $value
|
||||||
|
*/
|
||||||
public function setValue($entity, $field, $value)
|
public function setValue($entity, $field, $value)
|
||||||
{
|
{
|
||||||
if (isset($this->_reflectionProperties[$field])) {
|
if (isset($this->_reflectionProperties[$field])) {
|
||||||
$this->_reflectionProperties[$field]->setValue($entity, $value);
|
$this->_reflectionProperties[$field]->setValue($entity, $value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function setValueIfChanged($entity, $field, $value)
|
|
||||||
{
|
|
||||||
if (isset($this->_reflectionProperties[$field])) {
|
|
||||||
$this->_reflectionProperties[$field]->setValue($entity, $value);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets all field mappings.
|
* Gets all field mappings.
|
||||||
|
|
Loading…
Add table
Reference in a new issue