TestEmptySchema   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 1
dl 0
loc 12
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A build() 0 3 1
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\Config\Schema\SchemaConfig;
12
use Youshido\GraphQL\Schema\AbstractSchema;
13
14
15
class TestEmptySchema extends AbstractSchema
16
{
17
    public function build(SchemaConfig $config)
18
    {
19
    }
20
21
22
    public function getName($config)
23
    {
24
        return 'TestSchema';
25
    }
26
}
27