Passed
Pull Request — master (#274)
by Robbie
02:20
created

ElementsResolver   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 11
rs 10
c 0
b 0
f 0
wmc 2

1 Method

Rating   Name   Duplication   Size   Complexity  
A resolve() 0 9 2
1
<?php
2
3
namespace DNADesign\Elemental\GraphQL;
4
5
use GraphQL\Type\Definition\ResolveInfo;
0 ignored issues
show
Bug introduced by
The type GraphQL\Type\Definition\ResolveInfo was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
6
use SilverStripe\GraphQL\OperationResolver;
0 ignored issues
show
Bug introduced by
The type SilverStripe\GraphQL\OperationResolver was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
7
use SilverStripe\ORM\DataList;
8
9
class ElementsResolver implements OperationResolver
10
{
11
    public function resolve($object, array $args, $context, ResolveInfo $info)
12
    {
13
        if (!$object::singleton()->canView($context['currentUser'])) {
14
            throw new \Exception('Current user cannot view elements');
15
        }
16
17
        /** @var DataList $elements */
18
        $elements = $object->Elements();
19
        return $elements;
20
    }
21
}
22