InternalSchemaQueryObject   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 7
rs 10
c 0
b 0
f 0
ccs 2
cts 2
cp 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A build() 0 3 1
1
<?php
2
/*
3
* This file is a part of GraphQL project.
4
*
5
* @author Alexandr Viniychuk <[email protected]>
6
* created: 5/14/16 9:28 AM
7
*/
8
9
namespace Youshido\GraphQL\Schema;
10
11
12
use Youshido\GraphQL\Type\Object\AbstractObjectType;
13
14
class InternalSchemaQueryObject extends AbstractObjectType
15
{
16 21
    public function build($config)
17
    {
18 21
    }
19
20
}
21