Issues (158)

src/Node/Node.php (1 issue)

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