Skip to content

Commit fe32387

Browse files
committed
[CLEANUP] Remove unneccesary @var PHPDoc annotations
1 parent b01197d commit fe32387

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

tests/Unit/Value/CalcFunctionTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ public function parseSimpleCalc(): void
3333
self::assertCount(1, $args);
3434
self::assertInstanceOf(CalcRuleValueList::class, $args[0]);
3535

36-
/** @var CalcRuleValueList $value */
3736
$value = $args[0];
3837
$components = $value->getListComponents();
3938
self::assertCount(3, $components); // 100%, -, 20px
@@ -63,11 +62,9 @@ public function parseNestedCalc(): void
6362
self::assertCount(3, $components);
6463
self::assertSame('-', $components[1]);
6564

66-
/** @var CalcFunction */
6765
$nestedCalc = $components[2];
6866
self::assertInstanceOf(CalcFunction::class, $nestedCalc);
6967

70-
/** @var CalcRuleValueList $nestedValue */
7168
$nestedValue = $nestedCalc->getArguments()[0];
7269
self::assertInstanceOf(CalcRuleValueList::class, $nestedValue);
7370
$nestedComponents = $nestedValue->getListComponents();

0 commit comments

Comments
 (0)