Mutation
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 4
c 1
b 0
f 1
dl 0
loc 6
wmc 0
1
<?php
2
3
namespace Fnash\GraphQL;
4
5
final class Mutation
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\Mutation.
Loading history...
8
9
    const KEYWORD = 'mutation';
10
    const GENERATED_NAME_PREFIX = 'mutation_';
11
}
12