Skip to content

Commit 6e5113b

Browse files
committed
Fix CS
1 parent 38eee5e commit 6e5113b

File tree

4 files changed

+1
-4
lines changed

4 files changed

+1
-4
lines changed

src/PseudoTypes/List_.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
use phpDocumentor\Reflection\Type;
1818
use phpDocumentor\Reflection\Types\Array_;
1919
use phpDocumentor\Reflection\Types\Integer;
20-
use phpDocumentor\Reflection\Types\Mixed_;
2120

2221
/**
2322
* Value Object representing the type 'list'.

src/PseudoTypes/NonEmptyArray.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
use phpDocumentor\Reflection\PseudoType;
1717
use phpDocumentor\Reflection\Type;
1818
use phpDocumentor\Reflection\Types\Array_;
19-
use phpDocumentor\Reflection\Types\Mixed_;
2019

2120
/**
2221
* Value Object representing the type 'non-empty-array'.

src/PseudoTypes/NonEmptyList.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
use phpDocumentor\Reflection\Type;
1818
use phpDocumentor\Reflection\Types\Array_;
1919
use phpDocumentor\Reflection\Types\Integer;
20-
use phpDocumentor\Reflection\Types\Mixed_;
2120

2221
/**
2322
* Value Object representing the type 'non-empty-list'.

src/Types/Collection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function __toString(): string
5959
{
6060
$objectType = (string) ($this->fqsen ?? 'object');
6161

62-
/** @var string */
62+
/** @var string $valueType */
6363
$valueType = $this->valueType;
6464

6565
if ($this->keyType === null) {

0 commit comments

Comments
 (0)