File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11
11
* tag that contains type information (that is, an AST object).
12
12
*
13
13
* Requires a `type-lang/parser` dependency for {@see TypeStatement} support.
14
- *
15
- * @psalm-suppress UndefinedClass : Expects optional `type-lang/parser` dependency.
16
14
*/
17
15
interface OptionalTypeProviderInterface
18
16
{
19
17
/**
20
18
* Returns an AST object of the type or {@see null} in case the
21
19
* type is not specified.
22
20
*
21
+ * @psalm-suppress UndefinedClass : Expects optional `type-lang/parser` dependency.
23
22
* @psalm-immutable Each call to the method must return the same value.
24
23
*/
25
24
public function getType (): ?TypeStatement ;
Original file line number Diff line number Diff line change 6
6
7
7
use TypeLang \Parser \Node \Stmt \TypeStatement ;
8
8
9
- /**
10
- * @psalm-suppress UndefinedClass : Expects optional `type-lang/parser` dependency.
11
- */
12
9
interface TypeProviderInterface extends OptionalTypeProviderInterface
13
10
{
14
11
/**
15
12
* Returns an AST object of the type.
16
13
*
14
+ * @psalm-suppress UndefinedClass : Expects optional `type-lang/parser` dependency.
17
15
* @psalm-immutable Each call to the method must return the same value.
18
16
*/
19
17
public function getType (): TypeStatement ;
Original file line number Diff line number Diff line change @@ -22,6 +22,9 @@ public function __construct(
22
22
parent ::__construct ($ name , $ description );
23
23
}
24
24
25
+ /**
26
+ * @psalm-suppress UndefinedClass
27
+ */
25
28
public function getType (): TypeStatement
26
29
{
27
30
return $ this ->type ;
You can’t perform that action at this time.
0 commit comments