Test Failed
Push — master ( 690100...f55788 )
by Kirill
09:19
created

InterfaceDefinitionNode

Complexity

Total Complexity 0

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 3

Importance

Changes 0
Metric Value
dl 0
loc 5
c 0
b 0
f 0
wmc 0
lcom 0
cbo 3
1
<?php
2
/**
3
 * This file is part of Railt package.
4
 *
5
 * For the full copyright and license information, please view the LICENSE
6
 * file that was distributed with this source code.
7
 */
8
declare(strict_types=1);
9
10
namespace Railt\SDL\Frontend\Ast\Definition;
11
12
use Railt\SDL\Frontend\Ast\Definition\Provider\FieldNodesProvider;
13
use Railt\SDL\Frontend\Ast\Definition\Provider\InterfacesProvider;
14
15
/**
16
 * Class InterfaceDefinitionNode
17
 */
18
class InterfaceDefinitionNode extends TypeDefinitionNode
19
{
20
    use InterfacesProvider;
21
    use FieldNodesProvider;
22
}
23