Passed
Push — master ( d845af...25b359 )
by Bruno
08:11
created

processModelFieldDirective()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 0
c 1
b 0
f 0
dl 0
loc 5
rs 10
cc 1
nc 1
nop 3
1
<?php declare(strict_types=1);
2
3
namespace Modelarium\Laravel\Directives;
4
5
use Modelarium\Laravel\Targets\ModelGenerator;
6
use Modelarium\Laravel\Targets\Interfaces\ModelDirectiveInterface;
7
8
class LaravelMediaLibraryDataDirective implements ModelDirectiveInterface
9
{
10
    public static function processModelTypeDirective(
11
        ModelGenerator $generator,
12
        \GraphQL\Language\AST\Node $directive
13
    ): void {
14
    }
15
16
    public static function processModelFieldDirective(
17
        ModelGenerator $generator,
18
        \GraphQL\Type\Definition\FieldDefinition $field,
19
        \GraphQL\Language\AST\Node $directive
20
    ): void {
21
    }
22
23
    public function processModelRelationshipDirective(
24
        ModelGenerator $generator,
25
        \GraphQL\Type\Definition\FieldDefinition $field,
26
        \GraphQL\Language\AST\Node $directive
27
    ): void {
28
    }
29
}
30