Issues (158)

src/Node/AliasedNode.php (1 issue)

1
<?php
2
3
declare(strict_types=1);
4
5
namespace Jerowork\GraphqlAttributeSchema\Node;
6
7
/**
8
 * @internal
9
 */
10
interface AliasedNode
11
{
12
    /**
13
     * @return null|class-string
0 ignored issues
show
Documentation Bug introduced by
The doc comment null|class-string at position 2 could not be parsed: Unknown type name 'class-string' at position 2 in null|class-string.
Loading history...
14
     */
15
    public function getAlias(): ?string;
16
}
17