Skip to content

Commit cb5103f

Browse files
committed
Fix CS
1 parent 0d033ff commit cb5103f

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

tests/unit/PseudoTypes/ListTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function testCreateWithoutParams(): void
2828

2929
$this->assertEquals(new Integer(), $type->getOriginalKeyType());
3030
$this->assertNull($type->getOriginalValueType());
31-
$this->assertEquals(new Integer(), $type->getKeyType());
31+
$this->assertEquals(new Integer(), $type->getKeyType());
3232
$this->assertEquals(new Mixed_(), $type->getValueType());
3333
$this->assertEquals(new Array_(), $type->underlyingType());
3434
}

tests/unit/PseudoTypes/NonEmptyListTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function testCreateWithoutParams(): void
2828

2929
$this->assertEquals(new Integer(), $type->getOriginalKeyType());
3030
$this->assertNull($type->getOriginalValueType());
31-
$this->assertEquals(new Integer(), $type->getKeyType());
31+
$this->assertEquals(new Integer(), $type->getKeyType());
3232
$this->assertEquals(new Mixed_(), $type->getValueType());
3333
$this->assertEquals(new Array_(null, new Integer()), $type->underlyingType());
3434
}

tests/unit/PseudoTypes/ObjectShapeTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
namespace phpDocumentor\Reflection\PseudoTypes;
66

7-
use phpDocumentor\Reflection\Types\Array_;
8-
use phpDocumentor\Reflection\Types\Mixed_;
97
use phpDocumentor\Reflection\Types\Object_;
108
use PHPUnit\Framework\TestCase;
119

0 commit comments

Comments
 (0)