Completed
Pull Request — 8.x-3.x (#401)
by Sebastian
02:54
created

DefaultSchema::create()   B

Complexity

Conditions 1
Paths 1

Size

Total Lines 24
Code Lines 16

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 16
nc 1
nop 4
dl 0
loc 24
rs 8.9713
c 0
b 0
f 0
1
<?php
2
3
namespace Drupal\graphql_core\Plugin\GraphQL\Schemas;
4
5
use Drupal\graphql\Plugin\GraphQL\Schemas\PluggableSchemaPluginBase;
6
7
/**
8
 * Default generated schema.
9
 *
10
 * @GraphQLSchema(
11
 *   id = "default",
12
 *   name = "Default",
13
 *   path = "/graphql"
14
 * )
15
 */
16
class DefaultSchema extends PluggableSchemaPluginBase {
17
18
}
19