Completed
Push — master ( 7a0180...875ce0 )
by Alexandr
02:39
created
Tests/StarWars/Schema/StarWarsQueryType.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
                 'args'    => [
37 37
                     'episode' => ['type' => new EpisodeEnum()]
38 38
                 ],
39
-                'resolve' => function ($root, $args) {
39
+                'resolve' => function($root, $args) {
40 40
                     return StarWarsData::getHero(isset($args['episode']) ? $args['episode'] : null);
41 41
                 },
42 42
             ])
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
                 'args'    => [
47 47
                     'id' => new IdType()
48 48
                 ],
49
-                'resolve' => function ($value = null, $args = []) {
49
+                'resolve' => function($value = null, $args = []) {
50 50
                     $humans = StarWarsData::humans();
51 51
 
52 52
                     return isset($humans[$args['id']]) ? $humans[$args['id']] : null;
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
                 'args'    => [
59 59
                     'id' => new IdType()
60 60
                 ],
61
-                'resolve' => function ($value = null, $args = []) {
61
+                'resolve' => function($value = null, $args = []) {
62 62
                     $droids = StarWarsData::droids();
63 63
 
64 64
                     return isset($droids[$args['id']]) ? $droids[$args['id']] : null;
Please login to merge, or discard this patch.
src/Schema/AbstractSchema.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
             $config['mutation'] = new InternalSchemaMutationObject(['name' => $this->getName() . 'Mutation']);
29 29
         }
30 30
         if (!array_key_exists('types', $config)) {
31
-          $config['types'] = [];
31
+            $config['types'] = [];
32 32
         }
33 33
 
34 34
         $this->config = new SchemaConfig($config, $this);
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,10 +23,10 @@
 block discarded – undo
23 23
     public function __construct($config = [])
24 24
     {
25 25
         if (!array_key_exists('query', $config)) {
26
-            $config['query'] = new InternalSchemaQueryObject(['name' => $this->getName() . 'Query']);
26
+            $config['query'] = new InternalSchemaQueryObject(['name' => $this->getName().'Query']);
27 27
         }
28 28
         if (!array_key_exists('mutation', $config)) {
29
-            $config['mutation'] = new InternalSchemaMutationObject(['name' => $this->getName() . 'Mutation']);
29
+            $config['mutation'] = new InternalSchemaMutationObject(['name' => $this->getName().'Mutation']);
30 30
         }
31 31
         if (!array_key_exists('types', $config)) {
32 32
           $config['types'] = [];
Please login to merge, or discard this patch.
src/Relay/Connection/Connection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
         $edgeFields = !empty($config['edgeFields']) ? $config['edgeFields'] : [];
53 53
 
54 54
         $edgeType = new ObjectType([
55
-            'name'        => $name . 'Edge',
55
+            'name'        => $name.'Edge',
56 56
             'description' => 'An edge in a connection.',
57 57
             'fields'      => array_merge([
58 58
                 'node'   => [
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
         $connectionFields = !empty($config['connectionFields']) ? $config['connectionFields'] : [];
85 85
 
86 86
         $connectionType = new ObjectType([
87
-            'name'        => $name . 'Connection',
87
+            'name'        => $name.'Connection',
88 88
             'description' => 'A connection to a list of items.',
89 89
             'fields'      => array_merge([
90 90
                 'pageInfo' => [
Please login to merge, or discard this patch.
src/Type/SchemaTypesList.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
         if (!is_array($types)) {
25 25
             throw new \Exception('addTypes accept only array of types');
26 26
         }
27
-        foreach($types as $type) {
27
+        foreach ($types as $type) {
28 28
             $this->addType($type);
29 29
         }
30 30
         return $this;
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,9 @@  discard block
 block discarded – undo
42 42
     public function addType(TypeInterface $type)
43 43
     {
44 44
         $typeName = $this->getTypeName($type);
45
-        if ($this->isTypeNameRegistered($typeName)) return $this;
45
+        if ($this->isTypeNameRegistered($typeName)) {
46
+            return $this;
47
+        }
46 48
 
47 49
         $this->typesList[$typeName] = $type;
48 50
         return $this;
@@ -54,7 +56,9 @@  discard block
 block discarded – undo
54 56
     }
55 57
 
56 58
     private function getTypeName($type) {
57
-        if (is_string($type)) return $type;
59
+        if (is_string($type)) {
60
+            return $type;
61
+        }
58 62
         if (is_object($type) && $type instanceof AbstractType) {
59 63
             return $type->getName();
60 64
         }
Please login to merge, or discard this patch.
examples/02_blog/schema-bootstrap.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace BlogTest;
4 4
 
5
-require_once __DIR__ . '/../../../../../vendor/autoload.php';
6
-require_once __DIR__ . '/Schema/DataProvider.php';
7
-require_once __DIR__ . '/Schema/PostType.php';
8
-require_once __DIR__ . '/Schema/PostStatus.php';
9
-require_once __DIR__ . '/Schema/ContentBlockInterface.php';
10
-require_once __DIR__ . '/Schema/LikePostField.php';
11
-require_once __DIR__ . '/Schema/BannerType.php';
12
-require_once __DIR__ . '/Schema/ContentBlockUnion.php';
13
-require_once __DIR__ . '/Schema/PostInputType.php';
14
-require_once __DIR__ . '/Schema/BlogSchema.php';
5
+require_once __DIR__.'/../../../../../vendor/autoload.php';
6
+require_once __DIR__.'/Schema/DataProvider.php';
7
+require_once __DIR__.'/Schema/PostType.php';
8
+require_once __DIR__.'/Schema/PostStatus.php';
9
+require_once __DIR__.'/Schema/ContentBlockInterface.php';
10
+require_once __DIR__.'/Schema/LikePostField.php';
11
+require_once __DIR__.'/Schema/BannerType.php';
12
+require_once __DIR__.'/Schema/ContentBlockUnion.php';
13
+require_once __DIR__.'/Schema/PostInputType.php';
14
+require_once __DIR__.'/Schema/BlogSchema.php';
Please login to merge, or discard this patch.
examples/02_blog_inline/index.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@  discard block
 block discarded – undo
7 7
 use Youshido\GraphQL\Type\Object\ObjectType;
8 8
 
9 9
 
10
-require_once __DIR__ . '/../../../../../vendor/autoload.php';
11
-require_once __DIR__ . '/inline-schema.php';
10
+require_once __DIR__.'/../../../../../vendor/autoload.php';
11
+require_once __DIR__.'/inline-schema.php';
12 12
 /** @var ObjectType $rootQueryType */
13 13
 
14 14
 $processor = new Processor(new Schema([
@@ -17,4 +17,4 @@  discard block
 block discarded – undo
17 17
 $payload = '{ latestPost { title(truncated: true), summary } }';
18 18
 
19 19
 $processor->processPayload($payload);
20
-echo json_encode($processor->getResponseData()) . "\n";
20
+echo json_encode($processor->getResponseData())."\n";
Please login to merge, or discard this patch.
examples/01_sandbox/index.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
 use Youshido\GraphQL\Type\Object\ObjectType;
7 7
 use Youshido\GraphQL\Type\Scalar\StringType;
8 8
 
9
-require_once __DIR__ . '/../../../../../vendor/autoload.php';
9
+require_once __DIR__.'/../../../../../vendor/autoload.php';
10 10
 
11 11
 $processor = new Processor(new Schema([
12 12
     'query' => new ObjectType([
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
         'fields' => [
15 15
             'currentTime' => [
16 16
                 'type'    => new StringType(),
17
-                'resolve' => function () {
17
+                'resolve' => function() {
18 18
                     return date('Y-m-d H:ia');
19 19
                 }
20 20
             ]
@@ -23,4 +23,4 @@  discard block
 block discarded – undo
23 23
 ]));
24 24
 
25 25
 $processor->processPayload('{ currentTime }');
26
-echo json_encode($processor->getResponseData()) . "\n";
26
+echo json_encode($processor->getResponseData())."\n";
Please login to merge, or discard this patch.
src/Execution/Visitor/MaxComplexityQueryVisitor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
         $this->memo += $cost;
54 54
 
55 55
         if ($this->memo > $this->maxScore) {
56
-            throw new \Exception('query exceeded max allowed complexity of ' . $this->maxScore);
56
+            throw new \Exception('query exceeded max allowed complexity of '.$this->maxScore);
57 57
         }
58 58
 
59 59
         return $cost;
Please login to merge, or discard this patch.
src/Config/Traits/ResolvableObjectTrait.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -14,6 +14,9 @@
 block discarded – undo
14 14
 trait ResolvableObjectTrait
15 15
 {
16 16
 
17
+    /**
18
+     * @param string|boolean $value
19
+     */
17 20
     public function resolve($value, array $args, ResolveInfo $info)
18 21
     {
19 22
         if ($resolveFunction = $this->getConfig()->getResolveFunction()) {
Please login to merge, or discard this patch.