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
4 changes: 2 additions & 2 deletions src/CSSList/CSSList.php
Original file line number Diff line number Diff line change
Expand Up @@ -436,9 +436,9 @@ public function getContents(): array
}

/**
* @internal
*
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
*
* @internal
*/
public function getArrayRepresentation(): array
{
Expand Down
4 changes: 2 additions & 2 deletions src/Comment/Comment.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ public function render(OutputFormat $outputFormat): string
}

/**
* @internal
*
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
*
* @internal
*/
public function getArrayRepresentation(): array
{
Expand Down
4 changes: 2 additions & 2 deletions src/Property/CSSNamespace.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,9 @@ public function atRuleArgs(): array
}

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

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

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

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

/**
* @internal
*
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
*
* @internal
*/
public function getArrayRepresentation(): array;
}
4 changes: 2 additions & 2 deletions src/Rule/Rule.php
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,9 @@ public function render(OutputFormat $outputFormat): string
}

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

/**
* @internal
*
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
*
* @internal
*/
public function getArrayRepresentation(): array
{
Expand Down
4 changes: 2 additions & 2 deletions src/RuleSet/RuleSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -332,9 +332,9 @@ protected function renderRules(OutputFormat $outputFormat): string
}

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

/**
* @internal
*
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
*
* @internal
*/
public function getArrayRepresentation(): array
{
Expand Down