From 1dfadef22146861d19bf3459c0376ec3dc0c6a45 Mon Sep 17 00:00:00 2001 From: Javier Spagnoletti Date: Fri, 18 Nov 2016 12:35:51 -0300 Subject: [PATCH] Removed surplus semicolon at `EntityGenerator::generateFieldMappingPropertyDocBlock()` --- lib/Doctrine/ORM/Tools/EntityGenerator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/ORM/Tools/EntityGenerator.php b/lib/Doctrine/ORM/Tools/EntityGenerator.php index 5220fad55..5bcfc4d89 100644 --- a/lib/Doctrine/ORM/Tools/EntityGenerator.php +++ b/lib/Doctrine/ORM/Tools/EntityGenerator.php @@ -1628,7 +1628,7 @@ public function __construct() { $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 . ' *';