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

TypeDefinitionNode

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\Parser\Ast\Rule;
13
use Railt\SDL\Frontend\Ast\Definition\Provider\DescriptionProvider;
14
use Railt\SDL\Frontend\Ast\Definition\Provider\TypeNameProvider;
15
16
/**
17
 * Class TypeDefinitionNode
18
 */
19
abstract class TypeDefinitionNode extends Rule
20
{
21
    use TypeNameProvider;
22
    use DescriptionProvider;
23
}
24