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
9 changes: 3 additions & 6 deletions tests/Unit/Value/CalcFunctionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public function parseWithParentheses(): void
}

/**
* @return array<string, array{0: string, 1: string}>
* @return array<string, array{0: non-empty-string, 1: non-empty-string}>
*/
public function provideValidOperatorSyntax(): array
{
Expand All @@ -123,7 +123,7 @@ public function parseValidOperators(string $css, string $rendered): void
}

/**
* @return array<string, array{0: string, 1: string}>
* @return array<string, array{0: non-empty-string, 1: non-empty-string}>
*/
public function provideMultiline(): array
{
Expand Down Expand Up @@ -151,7 +151,7 @@ public function parseMultiline(string $css, string $rendered): void
}

/**
* @return array<string, array{0: string}>
* @return array<string, array{0: non-empty-string}>
*/
public function provideInvalidSyntax(): array
{
Expand Down Expand Up @@ -188,9 +188,6 @@ public function parseThrowsExceptionIfCalledWithWrongFunctionName(): void

/**
* Parse provided CSS as a CalcFunction
*
* @param string $css
* @return CalcFunction
*/
private function parse(string $css): CalcFunction
{
Expand Down