Skip to content

Commit

Permalink
constants rendering bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy-j committed Feb 9, 2017
1 parent c1d1cc7 commit 4d396b7
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ public function render(int $indentLevel = 0): string

$result .= $this->addIndent("const {$this->getName()} = ", $indentLevel);

//todo: make indent level work
return $result . $this->getSerializer()->serialize($this->value);
return $result . $this->getSerializer()->serialize($this->value) . ';';
}
}

0 comments on commit 4d396b7

Please sign in to comment.