[Tools] removed unused local variable in YamlExporter class.
This commit is contained in:
parent
505537d4ce
commit
ffa372a76c
1 changed files with 1 additions and 2 deletions
|
@ -115,7 +115,7 @@ class YamlExporter extends AbstractExporter
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($idGeneratorType = $this->_getIdGeneratorTypeString($metadata->generatorType)) {
|
if ($idGeneratorType = $this->_getIdGeneratorTypeString($metadata->generatorType)) {
|
||||||
$ids[$metadata->getSingleIdentifierFieldName()]['generator']['strategy'] = $this->_getIdGeneratorTypeString($metadata->generatorType);
|
$ids[$metadata->getSingleIdentifierFieldName()]['generator']['strategy'] = $idGeneratorType;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($ids) {
|
if ($ids) {
|
||||||
|
@ -129,7 +129,6 @@ class YamlExporter extends AbstractExporter
|
||||||
$array['fields'] = array_merge($array['fields'], $fieldMappings);
|
$array['fields'] = array_merge($array['fields'], $fieldMappings);
|
||||||
}
|
}
|
||||||
|
|
||||||
$associations = array();
|
|
||||||
foreach ($metadata->associationMappings as $name => $associationMapping) {
|
foreach ($metadata->associationMappings as $name => $associationMapping) {
|
||||||
$cascade = array();
|
$cascade = array();
|
||||||
if ($associationMapping['isCascadeRemove']) {
|
if ($associationMapping['isCascadeRemove']) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue