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

TestSchema::getName()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

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