Completed
Push — 2.0 ( 60f4f1...be6014 )
by Kirill
04:10
created

AbstractMutation::messages()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

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