Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Changes suggested in review
  • Loading branch information
JakeQZ committed Apr 8, 2025
commit 92b0ebfc32945441febe9d63e58275e83e23955b
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Please also have a look at our

### Added

- Interface `CSSElement` (#1231)
- Add Interface `CSSElement` (#1231)
- Methods `getLineNumber` and `getColumnNumber` which return a nullable `int`
for the following classes:
`Comment`, `CSSList`, `SourceException`, `Charset`, `CSSNamespace`, `Import`,
Expand Down
3 changes: 3 additions & 0 deletions tests/Unit/RuleSet/Fixtures/ConcreteRuleSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@

final class ConcreteRuleSet extends RuleSet
{
/**
* @return never
*/
public function render(OutputFormat $outputFormat): string
Comment thread
oliverklee marked this conversation as resolved.
{
throw new \BadMethodCallException('Nothing to see here :/', 1744067015);
Comment thread
oliverklee marked this conversation as resolved.
Expand Down
3 changes: 3 additions & 0 deletions tests/Unit/Value/Fixtures/ConcreteValue.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@

final class ConcreteValue extends Value
{
/**
* @return never
*/
public function render(OutputFormat $outputFormat): string
Comment thread
oliverklee marked this conversation as resolved.
{
throw new \BadMethodCallException('Nothing to see here :/', 1744067951);
Expand Down