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
![]() |
|||
14 | */ |
||
15 | public function getClassName(): string; |
||
16 | } |
||
17 |