Skip to content

Commit 92b0ebf

Browse files
committed
Changes suggested in review
1 parent 7576c8c commit 92b0ebf

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Please also have a look at our
1010

1111
### Added
1212

13-
- Interface `CSSElement` (#1231)
13+
- Add Interface `CSSElement` (#1231)
1414
- Methods `getLineNumber` and `getColumnNumber` which return a nullable `int`
1515
for the following classes:
1616
`Comment`, `CSSList`, `SourceException`, `Charset`, `CSSNamespace`, `Import`,

tests/Unit/RuleSet/Fixtures/ConcreteRuleSet.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99

1010
final class ConcreteRuleSet extends RuleSet
1111
{
12+
/**
13+
* @return never
14+
*/
1215
public function render(OutputFormat $outputFormat): string
1316
{
1417
throw new \BadMethodCallException('Nothing to see here :/', 1744067015);

tests/Unit/Value/Fixtures/ConcreteValue.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99

1010
final class ConcreteValue extends Value
1111
{
12+
/**
13+
* @return never
14+
*/
1215
public function render(OutputFormat $outputFormat): string
1316
{
1417
throw new \BadMethodCallException('Nothing to see here :/', 1744067951);

0 commit comments

Comments
 (0)