1
0
mirror of synced 2025-01-18 14:31:40 +03:00

[2.0] DDC-420 - Fix annotation exporter repositoryClass

This commit is contained in:
beberlei 2010-03-14 17:15:43 +00:00
parent f3f72edb45
commit 6bcaafe17b

View File

@ -239,7 +239,7 @@ class AnnotationExporter extends AbstractExporter
$str = '@Entity';
if ($metadata->customRepositoryClassName) {
$str .= '(repositoryClass=' . $metadata->customRepositoryClassName . ')';
$str .= '(repositoryClass="' . $metadata->customRepositoryClassName . '")';
}
return $str;