Completed
Push — master ( 14d264...b8b70e )
by Portey
05:01
created

ObjectType::resolve()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 6
Code Lines 3

Duplication

Lines 6
Ratio 100 %

Code Coverage

Tests 3
CRAP Score 2

Importance

Changes 6
Bugs 0 Features 3
Metric Value
c 6
b 0
f 3
dl 6
loc 6
ccs 3
cts 3
cp 1
rs 9.4286
cc 2
eloc 3
nc 2
nop 2
crap 2
1
<?php
2
/*
3
* This file is a part of graphql-youshido project.
4
*
5
* @author Alexandr Viniychuk <[email protected]>
6
* created: 11/27/15 1:24 AM
7
*/
8
9
namespace Youshido\GraphQL\Type\Object;
10
11
use Youshido\GraphQL\Type\Config\TypeConfigInterface;
12
use Youshido\GraphQL\Type\Traits\FinalTypesConfigTrait;
13
use Youshido\GraphQL\Validator\Exception\ConfigurationException;
14
15
final class ObjectType extends AbstractObjectType
16
{
17
18
    use FinalTypesConfigTrait;
19
20 5
    protected function build(TypeConfigInterface $config)
21
    {
22
    }
23
}