1
0
mirror of synced 2025-02-09 00:39:25 +03:00

Removed surplus semicolon at EntityGenerator::generateFieldMappingPropertyDocBlock()

This commit is contained in:
Javier Spagnoletti 2016-11-18 12:35:51 -03:00 committed by Marco Pivetta
parent ad6469b64a
commit 1dfadef221

View File

@ -1628,7 +1628,7 @@ public function __construct(<params>)
{
$lines = array();
$lines[] = $this->spaces . '/**';
$lines[] = $this->spaces . ' * @var ' . $this->getType($fieldMapping['type']) . ($this->getNullableField($fieldMapping) ? '|' . $this->getNullableField($fieldMapping) : '');;
$lines[] = $this->spaces . ' * @var ' . $this->getType($fieldMapping['type']) . ($this->getNullableField($fieldMapping) ? '|' . $this->getNullableField($fieldMapping) : '');
if ($this->generateAnnotations) {
$lines[] = $this->spaces . ' *';