Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1.0046 |
Changes | 0 |
1 | <?php |
||
12 | 1 | public static function build(): array |
|
13 | { |
||
14 | return |
||
15 | [ |
||
16 | 1 | 'name' => 'viewer', |
|
17 | 1 | 'type' => _types()->getOutput(User::class), |
|
18 | 1 | 'description' => 'Represents currently logged-in user', |
|
19 | 1 | 'resolve' => function ($root, array $args): ?User { |
|
20 | return User::getCurrent(); |
||
21 | 1 | }, |
|
25 |