Completed
Push — master ( f8702a...461e07 )
by Alexandr
04:08
created

Schema::__construct()   A

Complexity

Conditions 3
Paths 4

Size

Total Lines 14
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 10
CRAP Score 3

Importance

Changes 6
Bugs 3 Features 1
Metric Value
c 6
b 3
f 1
dl 0
loc 14
ccs 10
cts 10
cp 1
rs 9.4285
cc 3
eloc 7
nc 4
nop 1
crap 3
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;
10
11
use Youshido\GraphQL\Type\Config\Schema\SchemaConfig;
12
use Youshido\GraphQL\Type\Config\TypeConfigInterface;
13
use Youshido\GraphQL\Type\Object\AbstractObjectType;
14
use Youshido\GraphQL\Type\Object\InputObjectType;
15
use Youshido\GraphQL\Type\Object\ObjectType;
16
17
final class Schema extends AbstractSchema
18
{
19
    public function build(SchemaConfig $config) {}
20
}
21