Completed
Pull Request — 8.x-3.x (#473)
by Sebastian
03:05 queued 01:07
created

Schema::getSchemaBuilder()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Drupal\graphql\GraphQL\Schema;
4
5
use Youshido\GraphQL\Config\Schema\SchemaConfig;
6
use Youshido\GraphQL\Schema\AbstractSchema;
7
8
class Schema extends AbstractSchema {
9
10
  /**
11
   * {@inheritdoc}
12
   */
13
  public function build(SchemaConfig $config) {
14
    // Nothing to do here.
15
  }
16
17
}
18