Skip to content

Commit 9101566

Browse files
committed
Fix psalm errors
1 parent ee83c0c commit 9101566

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/Tag/OptionalTypeProviderInterface.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,14 @@
1111
* tag that contains type information (that is, an AST object).
1212
*
1313
* Requires a `type-lang/parser` dependency for {@see TypeStatement} support.
14-
*
15-
* @psalm-suppress UndefinedClass : Expects optional `type-lang/parser` dependency.
1614
*/
1715
interface OptionalTypeProviderInterface
1816
{
1917
/**
2018
* Returns an AST object of the type or {@see null} in case the
2119
* type is not specified.
2220
*
21+
* @psalm-suppress UndefinedClass : Expects optional `type-lang/parser` dependency.
2322
* @psalm-immutable Each call to the method must return the same value.
2423
*/
2524
public function getType(): ?TypeStatement;

src/Tag/TypeProviderInterface.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,12 @@
66

77
use TypeLang\Parser\Node\Stmt\TypeStatement;
88

9-
/**
10-
* @psalm-suppress UndefinedClass : Expects optional `type-lang/parser` dependency.
11-
*/
129
interface TypeProviderInterface extends OptionalTypeProviderInterface
1310
{
1411
/**
1512
* Returns an AST object of the type.
1613
*
14+
* @psalm-suppress UndefinedClass : Expects optional `type-lang/parser` dependency.
1715
* @psalm-immutable Each call to the method must return the same value.
1816
*/
1917
public function getType(): TypeStatement;

src/Tag/TypedTag.php

+3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ public function __construct(
2222
parent::__construct($name, $description);
2323
}
2424

25+
/**
26+
* @psalm-suppress UndefinedClass
27+
*/
2528
public function getType(): TypeStatement
2629
{
2730
return $this->type;

0 commit comments

Comments
 (0)