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

AbstractMutationType   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 1 Features 0
Metric Value
wmc 1
c 1
b 1
f 0
lcom 0
cbo 1
dl 0
loc 10
ccs 0
cts 3
cp 0
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A build() 0 4 1
getOutputType() 0 1 ?
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
}