Skip to content
Merged
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
2 changes: 1 addition & 1 deletion src/CSSList/CSSList.php
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ public function getContents(): array
}

/**
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
* @return array<string, bool|int|float|string|array<mixed>|null>
*
* @internal
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Comment/Comment.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public function render(OutputFormat $outputFormat): string
}

/**
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
* @return array<string, bool|int|float|string|array<mixed>|null>
*
* @internal
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Property/CSSNamespace.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public function atRuleArgs(): array
}

/**
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
* @return array<string, bool|int|float|string|array<mixed>|null>
*
* @internal
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Property/Charset.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public function atRuleArgs(): CSSString
}

/**
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
* @return array<string, bool|int|float|string|array<mixed>|null>
*
* @internal
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Property/Import.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public function getMediaQuery(): ?string
}

/**
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
* @return array<string, bool|int|float|string|array<mixed>|null>
*
* @internal
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Property/Selector.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public function render(OutputFormat $outputFormat): string
}

/**
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
* @return array<string, bool|int|float|string|array<mixed>|null>
*
* @internal
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Renderable.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface Renderable
public function render(OutputFormat $outputFormat): string;

/**
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
* @return array<string, bool|int|float|string|array<mixed>|null>
*
* @internal
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Rule/Rule.php
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public function render(OutputFormat $outputFormat): string
}

/**
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
* @return array<string, bool|int|float|string|array<mixed>|null>
*
* @internal
*/
Expand Down
2 changes: 1 addition & 1 deletion src/RuleSet/DeclarationBlock.php
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ public function render(OutputFormat $outputFormat): string
}

/**
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
* @return array<string, bool|int|float|string|array<mixed>|null>
*
* @internal
*/
Expand Down
2 changes: 1 addition & 1 deletion src/RuleSet/RuleSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ protected function renderRules(OutputFormat $outputFormat): string
}

/**
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
* @return array<string, bool|int|float|string|array<mixed>|null>
*
* @internal
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Value/CSSFunction.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public function render(OutputFormat $outputFormat): string
}

/**
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
* @return array<string, bool|int|float|string|array<mixed>|null>
*
* @internal
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Value/CSSString.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public function render(OutputFormat $outputFormat): string
}

/**
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
* @return array<string, bool|int|float|string|array<mixed>|null>
*
* @internal
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Value/CalcFunction.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public static function parse(ParserState $parserState, bool $ignoreCase = false)
}

/**
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
* @return array<string, bool|int|float|string|array<mixed>|null>
*
* @internal
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Value/CalcRuleValueList.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function render(OutputFormat $outputFormat): string
}

/**
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
* @return array<string, bool|int|float|string|array<mixed>|null>
*
* @internal
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Value/Color.php
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ public function render(OutputFormat $outputFormat): string
}

/**
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
* @return array<string, bool|int|float|string|array<mixed>|null>
*
* @internal
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Value/LineName.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public function render(OutputFormat $outputFormat): string
}

/**
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
* @return array<string, bool|int|float|string|array<mixed>|null>
*
* @internal
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Value/Size.php
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ public function render(OutputFormat $outputFormat): string
}

/**
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
* @return array<string, bool|int|float|string|array<mixed>|null>
*
* @internal
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Value/Value.php
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public static function parsePrimitiveValue(ParserState $parserState)
}

/**
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
* @return array<string, bool|int|float|string|array<mixed>|null>
*
* @internal
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Value/ValueList.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public function render(OutputFormat $outputFormat): string
}

/**
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
* @return array<string, bool|int|float|string|array<mixed>|null>
*
* @internal
*/
Expand Down