Completed
Push — master ( a7480b...987705 )
by Portey
03:46
created

AbstractMutationType::build()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 1 Features 0
Metric Value
c 1
b 1
f 0
dl 0
loc 4
ccs 0
cts 3
cp 0
rs 10
cc 1
eloc 1
nc 1
nop 1
crap 2
1
<?php
2
/**
3
 * Date: 14.01.16
4
 *
5
 * @author Portey Vasil <[email protected]>
6
 */
7
8
namespace Youshido\GraphQL\Type\Object;
9
10
11
use Youshido\GraphQL\Type\Config\TypeConfigInterface;
12
13
abstract class AbstractMutationType extends AbstractObjectType
14
{
15
16
    public function build(TypeConfigInterface $config)
17
    {
18
19
    }
20
21
    abstract public function getOutputType();
22
}