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

AbstractMutationObjectType   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 2
Bugs 0 Features 1
Metric Value
wmc 1
c 2
b 0
f 1
lcom 0
cbo 1
dl 0
loc 10
rs 10
ccs 0
cts 4
cp 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getType() 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
abstract class AbstractMutationObjectType extends AbstractObjectType
11
{
12
13
    public function getType()
14
    {
15
        return $this->getOutputType();
16
    }
17
18
    abstract public function getOutputType();
19
}
20