1
0
mirror of synced 2025-01-29 19:41:45 +03:00

Merge pull request #363 from gajdaw/entities_generator_cs_fix

Entities generator: constructor's template docblock
This commit is contained in:
Guilherme Blanco 2012-06-14 22:42:17 -07:00
commit e8ad82c80f

View File

@ -37,7 +37,7 @@ use Doctrine\ORM\Mapping\ClassMetadataInfo,
* $generator->setUpdateEntityIfExists(true);
* $generator->generate($classes, '/path/to/generate/entities');
*
*
*
* @link www.doctrine-project.org
* @since 2.0
* @author Benjamin Eberlei <kontakt@beberlei.de>
@ -235,7 +235,10 @@ public function <methodName>()
* @var string
*/
private static $constructorMethodTemplate =
'public function __construct()
'/**
* Constructor
*/
public function __construct()
{
<spaces><collections>
}
@ -975,10 +978,10 @@ public function <methodName>()
if ($this->generateAnnotations) {
$lines[] = $this->spaces . ' *';
if (isset($associationMapping['id']) && $associationMapping['id']) {
$lines[] = $this->spaces . ' * @' . $this->annotationsPrefix . 'Id';
if ($generatorType = $this->getIdGeneratorTypeString($metadata->generatorType)) {
$lines[] = $this->spaces . ' * @' . $this->annotationsPrefix . 'GeneratedValue(strategy="' . $generatorType . '")';
}