Query
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 1
Metric Value
eloc 4
c 2
b 0
f 1
dl 0
loc 6
wmc 0
1
<?php
2
3
namespace Fnash\GraphQL;
4
5
final class Query
6
{
7
    use QueryTrait;
0 ignored issues
show
Bug introduced by
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