Skip to content

Commit e9b8e5c

Browse files
committed
🔊 Update context text
1 parent a789709 commit e9b8e5c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Utils/Annotation/AnnotationParser.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public function getTableAnnotations(Table $table): Annotations
8888
{
8989
$options = $table->getOptions();
9090
if (isset($options['comment'])) {
91-
return $this->parse($options['comment'], ' comment in table '.$table->getName());
91+
return $this->parse($options['comment'], 'comment in table `' . $table->getName() . '`');
9292
}
9393
return new Annotations([]);
9494
}
@@ -99,6 +99,6 @@ public function getColumnAnnotations(Column $column, Table $table): Annotations
9999
if ($comment === null) {
100100
return new Annotations([]);
101101
}
102-
return $this->parse($comment, sprintf('comment of column %s in table %s', $column->getName(), $table->getName()));
102+
return $this->parse($comment, sprintf('comment of column `%s` in table `%s`', $column->getName(), $table->getName()));
103103
}
104104
}

0 commit comments

Comments
 (0)