Completed
Push — master ( 17976d...325209 )
by Portey
07:00
created

Schema::build()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 1
Metric Value
c 1
b 1
f 1
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
/**
3
 * Date: 07.12.15
4
 *
5
 * @author Portey Vasil <[email protected]>
6
 */
7
8
namespace Youshido\Tests\StarWars\Schema;
9
10
11
use Youshido\GraphQL\Type\Config\Schema\SchemaConfig;
12
13
class Schema extends \Youshido\GraphQL\Schema
14
{
15
16
    public function build(SchemaConfig $config)
17
    {
18
        $config->setQuery(new QueryType());
19
    }
20
21
}