Passed
Push — master ( 97e8d4...784af9 )
by Raissa
05:32 queued 03:00
created

src/GraphQL/ElementsResolver.php (2 issues)

Labels
Severity
1
<?php
2
3
namespace DNADesign\Elemental\GraphQL;
4
5
use GraphQL\Type\Definition\ResolveInfo;
0 ignored issues
show
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
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->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