We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1de98c commit f022de7Copy full SHA for f022de7
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# CHANGELOG
2
3
+### Bug fix
4
+
5
+ * Fixed to align the indentation of the line specified in header options.
6
7
## v0.1.0 (2202-12-08)
8
9
### Features
src/DiagramElement/Relation.php
@@ -21,7 +21,7 @@ public function getPackage(): Package {
21
22
public function dump(): array {
23
$lines = ['@startuml class-diagram'];
24
- $lines = array_merge($lines, $this->options->headers());
+ $lines = array_merge($lines, array_map(function($x){ return ' ' . $x;}, $this->options->headers()));
25
$lines = array_merge($lines, $this->package->dump());
26
$lines = array_merge($lines, $this->getRelations());
27
$lines[] = '@enduml';
0 commit comments