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

Schema   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 3

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A build() 0 4 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
}