Passed
Push — master ( ecccb9...b91912 )
by Robbie
08:46
created

src/GraphQL/Types/ObjectType.php (2 issues)

Labels
Severity
1
<?php
2
namespace DNADesign\Elemental\GraphQL\Types;
3
4
use GraphQL\Type\Definition\CustomScalarType;
0 ignored issues
show
The type GraphQL\Type\Definition\CustomScalarType 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...
5
use SilverStripe\GraphQL\TypeCreator;
0 ignored issues
show
The type SilverStripe\GraphQL\TypeCreator 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
7
/**
8
 * Creates a "scalar" type that is a single dimension object - represented as an associative array on the PHP side.
9
 */
10
class ObjectType extends TypeCreator
11
{
12
    public function toType()
13
    {
14
        return new CustomScalarType([
15
            'name' => 'ObjectType',
16
            'serialize' => function ($value) {
17
                return (object) $value;
18
            },
19
            'parseValue' => function ($value) {
20
                return (array) $value;
21
            },
22
            'parseLiteral' => function ($ast) {
23
                return $ast->value;
24
            },
25
        ]);
26
    }
27
}
28