Completed
Push — master ( 5231d5...f954c7 )
by Alexandr
04:05 queued 01:38
created
src/Type/Enum/AbstractEnumType.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,9 @@
 block discarded – undo
48 48
      */
49 49
     public function isValidValue($value)
50 50
     {
51
-        if (is_null($value)) return true;
51
+        if (is_null($value)) {
52
+            return true;
53
+        }
52 54
         foreach ($this->getConfig()->get('values') as $item) {
53 55
             if ($value === $item['name'] || $value === $item['value']) {
54 56
                 return true;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
 
61 61
     public function getValidationError($value = null)
62 62
     {
63
-        $allowedValues             = array_map(function (array $value) {
63
+        $allowedValues = array_map(function(array $value) {
64 64
             return sprintf('%s (%s)', $value['name'], $value['value']);
65 65
         }, $this->getConfig()->get('values'));
66 66
         return sprintf('Value must be one of the allowed ones: %s', implode(', ', $allowedValues));
Please login to merge, or discard this patch.
Tests/Schema/InputObjectDefaultValuesTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
                 ],
32 32
             ]
33 33
         ]);
34
-        $schema   = new Schema([
34
+        $schema = new Schema([
35 35
             'query' => new ObjectType([
36 36
                 'name'   => 'RootQuery',
37 37
                 'fields' => [
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
                                 ]
50 50
                             ])
51 51
                         ],
52
-                        'resolve'    => function ($source, $args) {
52
+                        'resolve'    => function($source, $args) {
53 53
                             return sprintf('Result with level %s and status %s',
54 54
                                 $args['statObject']['level'], $args['statObject']['status']
55 55
                             );
Please login to merge, or discard this patch.
Tests/Issues/Issue90/Issue90Schema.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
                         'args'    => [
21 21
                             'date' => new DateTimeType('Y-m-d H:ia')
22 22
                         ],
23
-                        'resolve' => function ($value, $args, $info) {
23
+                        'resolve' => function($value, $args, $info) {
24 24
 
25 25
                             if (isset($args['date'])) {
26 26
                                 return $args['date'];
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
                         'args'    => [
43 43
                             'date' => new DateTimeType('Y-m-d H:ia')
44 44
                         ],
45
-                        'resolve' => function ($value, $args, $info) {
45
+                        'resolve' => function($value, $args, $info) {
46 46
 
47 47
                             if (isset($args['date'])) {
48 48
                                 return $args['date'];
Please login to merge, or discard this patch.
src/Config/Traits/FieldsAwareConfigTrait.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     }
91 91
 
92 92
     /**
93
-     * @param $name
93
+     * @param string $name
94 94
      *
95 95
      * @return Field
96 96
      */
@@ -122,6 +122,9 @@  discard block
 block discarded – undo
122 122
         return $this->fields;
123 123
     }
124 124
 
125
+    /**
126
+     * @param string $name
127
+     */
125 128
     public function removeField($name)
126 129
     {
127 130
         if ($this->hasField($name)) {
Please login to merge, or discard this patch.
examples/03_relay_star_wars/index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
 use Youshido\GraphQL\Execution\Processor;
6 6
 use Youshido\GraphQL\Schema;
7 7
 
8
-require_once __DIR__ . '/schema-bootstrap.php';
8
+require_once __DIR__.'/schema-bootstrap.php';
9 9
 /** @var Schema\AbstractSchema $schema */
10 10
 $schema = new StarWarsRelaySchema();
11 11
 
@@ -48,4 +48,4 @@  discard block
 block discarded – undo
48 48
         ';
49 49
 
50 50
 $processor->processPayload($payload, ['names_0' => ['rebels']]);
51
-echo json_encode($processor->getResponseData()) . "\n";
51
+echo json_encode($processor->getResponseData())."\n";
Please login to merge, or discard this patch.
examples/03_relay_star_wars/router.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 use Youshido\GraphQL\Execution\Processor;
12 12
 use Youshido\GraphQL\Schema\Schema;
13 13
 
14
-require_once __DIR__ . '/schema-bootstrap.php';
14
+require_once __DIR__.'/schema-bootstrap.php';
15 15
 /** @var Schema $schema */
16 16
 $schema = new StarWarsRelaySchema();
17 17
 
Please login to merge, or discard this patch.
examples/02_blog/index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
 use Youshido\GraphQL\Execution\Processor;
7 7
 use Youshido\GraphQL\Schema\Schema;
8 8
 
9
-require_once __DIR__ . '/schema-bootstrap.php';
9
+require_once __DIR__.'/schema-bootstrap.php';
10 10
 /** @var Schema $schema */
11 11
 $schema = new BlogSchema();
12 12
 
@@ -18,4 +18,4 @@  discard block
 block discarded – undo
18 18
 $payload = 'mutation { createPost(author: "Alex", post: {title: "Hey, this is my new post", summary: "my post" }) { title } }';
19 19
 
20 20
 $processor->processPayload($payload);
21
-echo json_encode($processor->getResponseData()) . "\n";
21
+echo json_encode($processor->getResponseData())."\n";
Please login to merge, or discard this patch.
examples/02_blog/router.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 use Youshido\GraphQL\Execution\Processor;
12 12
 use Youshido\GraphQL\Schema\Schema;
13 13
 
14
-require_once __DIR__ . '/schema-bootstrap.php';
14
+require_once __DIR__.'/schema-bootstrap.php';
15 15
 /** @var Schema $schema */
16 16
 $schema = new BlogSchema();
17 17
 
Please login to merge, or discard this patch.
Tests/Library/Config/InterfaceTypeConfigTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     public function testConfigNoFields()
32 32
     {
33 33
         ConfigValidator::getInstance()->assertValidConfig(
34
-            new InterfaceTypeConfig(['name' => 'Test', 'resolveType' => function () { }], null, true)
34
+            new InterfaceTypeConfig(['name' => 'Test', 'resolveType' => function() { }], null, true)
35 35
         );
36 36
     }
37 37
 
@@ -59,11 +59,11 @@  discard block
 block discarded – undo
59 59
         $interfaceConfig = new InterfaceTypeConfig([
60 60
             'name'        => 'Test',
61 61
             'fields'      => ['id' => new IntType()],
62
-            'resolveType' => function ($object) {
62
+            'resolveType' => function($object) {
63 63
                 return $object->getType();
64 64
             }
65 65
         ], null, true);
66
-        $object          = new ObjectType(['name' => 'User', 'fields' => ['name' => new StringType()]]);
66
+        $object = new ObjectType(['name' => 'User', 'fields' => ['name' => new StringType()]]);
67 67
 
68 68
         $this->assertEquals($interfaceConfig->getName(), 'Test');
69 69
         $this->assertEquals($interfaceConfig->resolveType($object), $object->getType());
Please login to merge, or discard this patch.