Completed
Push — master ( d01340...7e7fa7 )
by Portey
07:36
created

TestSchema   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getName() 0 4 1
1
<?php
2
/*
3
* This file is a part of GraphQL project.
4
*
5
* @author Alexandr Viniychuk <[email protected]>
6
* created: 12/3/15 11:28 PM
7
*/
8
9
namespace Youshido\Tests\DataProvider;
10
11
use Youshido\GraphQL\Schema;
12
use Youshido\GraphQL\Type\Config\Schema\SchemaConfig;
13
use Youshido\GraphQL\Type\Config\TypeConfigInterface;
14
use Youshido\GraphQL\Type\ListType\ListType;
15
16
class TestSchema extends Schema
17
{
18
19
    public function getName()
20
    {
21
        return 'TestSchema';
22
    }
23
}