Skip to content

Commit c82f704

Browse files
authored
[CLEANUP] Reorder some PHPDoc annotations (#1449)
This avoids unrelated changes by autoformatting in the future. Part of #1440
1 parent 32b7fac commit c82f704

File tree

11 files changed

+22
-22
lines changed

11 files changed

+22
-22
lines changed

src/CSSList/CSSList.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -436,9 +436,9 @@ public function getContents(): array
436436
}
437437

438438
/**
439-
* @internal
440-
*
441439
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
440+
*
441+
* @internal
442442
*/
443443
public function getArrayRepresentation(): array
444444
{

src/Comment/Comment.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ public function render(OutputFormat $outputFormat): string
4848
}
4949

5050
/**
51-
* @internal
52-
*
5351
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
52+
*
53+
* @internal
5454
*/
5555
public function getArrayRepresentation(): array
5656
{

src/Property/CSSNamespace.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@ public function atRuleArgs(): array
9696
}
9797

9898
/**
99-
* @internal
100-
*
10199
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
100+
*
101+
* @internal
102102
*/
103103
public function getArrayRepresentation(): array
104104
{

src/Property/Charset.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ public function atRuleArgs(): CSSString
7373
}
7474

7575
/**
76-
* @internal
77-
*
7876
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
77+
*
78+
* @internal
7979
*/
8080
public function getArrayRepresentation(): array
8181
{

src/Property/Import.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ public function getMediaQuery(): ?string
8484
}
8585

8686
/**
87-
* @internal
88-
*
8987
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
88+
*
89+
* @internal
9090
*/
9191
public function getArrayRepresentation(): array
9292
{

src/Property/Selector.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ public function render(OutputFormat $outputFormat): string
9797
}
9898

9999
/**
100-
* @internal
101-
*
102100
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
101+
*
102+
* @internal
103103
*/
104104
public function getArrayRepresentation(): array
105105
{

src/Renderable.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ interface Renderable
99
public function render(OutputFormat $outputFormat): string;
1010

1111
/**
12-
* @internal
13-
*
1412
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
13+
*
14+
* @internal
1515
*/
1616
public function getArrayRepresentation(): array;
1717
}

src/Rule/Rule.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,9 @@ public function render(OutputFormat $outputFormat): string
199199
}
200200

201201
/**
202-
* @internal
203-
*
204202
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
203+
*
204+
* @internal
205205
*/
206206
public function getArrayRepresentation(): array
207207
{

src/RuleSet/DeclarationBlock.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,9 +274,9 @@ public function render(OutputFormat $outputFormat): string
274274
}
275275

276276
/**
277-
* @internal
278-
*
279277
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
278+
*
279+
* @internal
280280
*/
281281
public function getArrayRepresentation(): array
282282
{

src/RuleSet/RuleSet.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -332,9 +332,9 @@ protected function renderRules(OutputFormat $outputFormat): string
332332
}
333333

334334
/**
335-
* @internal
336-
*
337335
* @return array<string, bool|int|float|string|list<array<string, mixed>>>
336+
*
337+
* @internal
338338
*/
339339
public function getArrayRepresentation(): array
340340
{

0 commit comments

Comments
 (0)