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

Entity::getId()   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 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Drupal\graphql_core\Plugin\GraphQL\Interfaces\Entity;
4
5
use Drupal\graphql\Plugin\GraphQL\Interfaces\InterfacePluginBase;
6
7
/**
8
 * @GraphQLInterface(
9
 *   id = "entity",
10
 *   name = "Entity",
11
 *   type = "entity",
12
 *   description = @Translation("Common entity interface containing generic entity properties.")
13
 * )
14
 */
15
class Entity extends InterfacePluginBase {
0 ignored issues
show
Bug introduced by
There is one abstract method getPluginDefinition in this class; you could implement it, or declare this class as abstract.
Loading history...
16
17
}
18