Completed
Pull Request — master (#36)
by Sebastian
04:13
created

TestEmptySchema::build()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
eloc 1
nc 1
nop 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\Config\Schema\SchemaConfig;
12
use Youshido\GraphQL\Schema\AbstractSchema;
13
14
15
class TestEmptySchema extends AbstractSchema
16
{
17
    public function getName()
18
    {
19
        return 'TestSchema';
20
    }
21
}
22