Completed
Push — master ( d52ee7...e7842c )
by Alexandr
03:54
created

Schema   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 1 Features 0
Metric Value
wmc 1
c 1
b 1
f 0
lcom 0
cbo 1
dl 0
loc 6
rs 10
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-youshido project.
4
*
5
* @author Alexandr Viniychuk <[email protected]>
6
* created: 11/28/15 3:40 PM
7
*/
8
9
namespace Youshido\GraphQL\Schema;
10
11
use Youshido\GraphQL\Config\Schema\SchemaConfig;
12
13
final class Schema extends AbstractSchema
14
{
15 9
    public function build(SchemaConfig $config)
16
    {
17 9
    }
18
}
19