Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Sabberworm\CSS\Tests\CSSList;
namespace Sabberworm\CSS\Tests\Unit\CSSList;

use PHPUnit\Framework\TestCase;
use Sabberworm\CSS\Comment\Commentable;
Expand Down Expand Up @@ -50,7 +50,7 @@ public function getContentsInitiallyReturnsEmptyArray(): void
}

/**
* @return array<string, array<int, array<int, DeclarationBlock>>>
* @return array<string, array{0: list<DeclarationBlock>}>
*/
public static function contentsDataProvider(): array
{
Expand All @@ -64,7 +64,7 @@ public static function contentsDataProvider(): array
/**
* @test
*
* @param array<int, DeclarationBlock> $contents
* @param list<DeclarationBlock> $contents
*
* @dataProvider contentsDataProvider
*/
Expand Down