diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a223514..5b51dbfe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,6 +38,7 @@ Please also have a look at our ### Removed +- Drop `getLineNo()` from the `Renderable` interface (#1038) - Remove `OutputFormat::level()` (#874) - Remove expansion of shorthand properties (#838) - Remove `Parser::setCharset/getCharset` (#808) diff --git a/src/Renderable.php b/src/Renderable.php index ff96d66a..ed633654 100644 --- a/src/Renderable.php +++ b/src/Renderable.php @@ -12,9 +12,4 @@ interface Renderable public function __toString(): string; public function render(OutputFormat $outputFormat): string; - - /** - * @return int<0, max> - */ - public function getLineNo(): int; }