Completed
Push — 2.0 ( fe8057...a5342d )
by Kirill
06:55
created

AbstractType::getName()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 10
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 5
nc 2
nop 0
dl 0
loc 10
rs 9.4285
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * This file is part of laravel.su package.
5
 *
6
 * For the full copyright and license information, please view the LICENSE
7
 * file that was distributed with this source code.
8
 */
9
declare(strict_types=1);
10
11
namespace App\GraphQL\Types;
12
13
use App\GraphQL\Kernel\AttributeExists;
14
use Folklore\GraphQL\Support\Type as GraphQLType;
15
16
/**
17
 * Class AbstractType.
18
 */
19
abstract class AbstractType extends GraphQLType
20
{
21
    use AttributeExists;
22
}
23