Made orm:convert-mapping command more configurable (allow to change the extension of the generated files for instance)
This commit is contained in:
parent
875f5c1fa8
commit
86c3744b8c
1 changed files with 8 additions and 2 deletions
|
@ -137,8 +137,7 @@ EOT
|
||||||
|
|
||||||
$toType = strtolower($input->getArgument('to-type'));
|
$toType = strtolower($input->getArgument('to-type'));
|
||||||
|
|
||||||
$cme = new ClassMetadataExporter();
|
$exporter = $this->getExporter($toType, $destPath);
|
||||||
$exporter = $cme->getExporter($toType, $destPath);
|
|
||||||
$exporter->setOverwriteExistingFiles( ($input->getOption('force') !== false) );
|
$exporter->setOverwriteExistingFiles( ($input->getOption('force') !== false) );
|
||||||
|
|
||||||
if ($toType == 'annotation') {
|
if ($toType == 'annotation') {
|
||||||
|
@ -167,4 +166,11 @@ EOT
|
||||||
$output->write('No Metadata Classes to process.' . PHP_EOL);
|
$output->write('No Metadata Classes to process.' . PHP_EOL);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected function getExporter($toType, $destPath)
|
||||||
|
{
|
||||||
|
$cme = new ClassMetadataExporter();
|
||||||
|
|
||||||
|
return $cme->getExporter($toType, $destPath);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue