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

AbstractMutationObjectType::getType()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 2
Bugs 0 Features 1
Metric Value
c 2
b 0
f 1
dl 0
loc 4
rs 10
ccs 0
cts 4
cp 0
cc 1
eloc 2
nc 1
nop 0
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
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