Issues (12)

GraphQL/Query.php (1 issue)

Labels
Severity
1
<?php
2
3
namespace Fnash\GraphQL;
4
5
final class Query
6
{
7
    use QueryTrait;
0 ignored issues
show
The trait Fnash\GraphQL\QueryTrait requires the property $name which is not provided by Fnash\GraphQL\Query.
Loading history...
8
9
    const KEYWORD = 'query';
10
    const GENERATED_NAME_PREFIX = 'query_';
11
}
12