Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions 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

- Support for CSS container queries (#1400)
- Add support for CSS container queries (#1400)

### Changed

Expand All @@ -22,7 +22,7 @@ Please also have a look at our

- Use typesafe versions of PHP functions (#1379, #1380, #1382, #1383, #1384)
- Fix parsing of `calc` expressions when a newline immediately precedes or
follows a + or - operator (#1399)
follows a `+` or `-` operator (#1399)

### Documentation

Expand Down
3 changes: 3 additions & 0 deletions tests/Unit/Property/AtRuleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
use PHPUnit\Framework\TestCase;
use Sabberworm\CSS\Property\AtRule;

/**
* @covers \Sabberworm\CSS\Property\AtRule
*/
final class AtRuleTest extends TestCase

Check failure on line 13 in tests/Unit/Property/AtRuleTest.php

View workflow job for this annotation

GitHub Actions / Static Analysis (php:stan, 8.3)

`@covers` value \Sabberworm\CSS\Property\AtRule references an interface.
{
/**
* @test
Expand Down
Loading