Completed
Push — master ( 7a0180...875ce0 )
by Alexandr
02:39
created
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.
Tests/Schema/InputParseTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
                             'from'   => new DateTimeType('Y-m-d H:i:s'),
31 31
                             'fromtz' => new DateTimeTzType(),
32 32
                         ],
33
-                        'resolve' => function ($source, $args) {
33
+                        'resolve' => function($source, $args) {
34 34
                             return sprintf('Result with %s date and %s tz',
35 35
                                 empty($args['from']) ? 'default' : $args['from']->format('Y-m-d H:i:s'),
36 36
                                 empty($args['fromtz']) ? 'default' : $args['fromtz']->format('r')
Please login to merge, or discard this patch.
Tests/Performance/LoadTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,12 +43,12 @@  discard block
 block discarded – undo
43 43
             $authors = [];
44 44
             while (count($authors) < rand(1, 4)) {
45 45
                 $authors[] = [
46
-                    'name' => 'Author ' . substr(md5(time()), 0, 4)
46
+                    'name' => 'Author '.substr(md5(time()), 0, 4)
47 47
                 ];
48 48
             }
49 49
             $data[] = [
50 50
                 'id'      => $i,
51
-                'title'   => 'Title of ' . $i,
51
+                'title'   => 'Title of '.$i,
52 52
                 'authors' => $authors,
53 53
             ];
54 54
         }
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
         return true;
70 70
         $p->processPayload('{ posts { id, title, authors { name } } }');
71 71
         $res = $p->getResponseData();
72
-        echo "Count: " . count($res['data']['posts']) . "\n";
72
+        echo "Count: ".count($res['data']['posts'])."\n";
73 73
         var_dump($res['data']['posts'][0]);
74 74
         printf("Test Time: %04f\n", microtime(true) - $time);
75 75
     }
Please login to merge, or discard this patch.
Tests/StarWars/Schema/CharacterInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
             ->addField('name', new NonNullType(new StringType()))
24 24
             ->addField('friends', [
25 25
                 'type'    => new ListType(new CharacterInterface()),
26
-                'resolve' => function ($value) {
26
+                'resolve' => function($value) {
27 27
                     return $value['friends'];
28 28
                 }
29 29
             ])
Please login to merge, or discard this patch.
Tests/StarWars/Schema/HumanType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
             ->addField('name', new NonNullType(new StringType()))
26 26
             ->addField('friends', [
27 27
                 'type'    => new ListType(new CharacterInterface()),
28
-                'resolve' => function ($droid) {
28
+                'resolve' => function($droid) {
29 29
                     return StarWarsData::getFriends($droid);
30 30
                 },
31 31
             ])
Please login to merge, or discard this patch.
src/Schema/AbstractSchema.php 1 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/Type/TypeFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,13 +34,13 @@
 block discarded – undo
34 34
                 $name = $name == 'Datetime' ? 'DateTime' : $name;
35 35
                 $name = $name == 'Datetimetz' ? 'DateTimeTz' : $name;
36 36
 
37
-                $className                = 'Youshido\GraphQL\Type\Scalar\\' . $name . 'Type';
37
+                $className                = 'Youshido\GraphQL\Type\Scalar\\'.$name.'Type';
38 38
                 self::$objectsHash[$type] = new $className();
39 39
             }
40 40
 
41 41
             return self::$objectsHash[$type];
42 42
         } else {
43
-            throw new ConfigurationException('Configuration problem with type ' . $type);
43
+            throw new ConfigurationException('Configuration problem with type '.$type);
44 44
         }
45 45
     }
46 46
 
Please login to merge, or discard this patch.
src/Validator/ConfigValidator/ConfigValidator.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
     public function assertValidConfig(AbstractConfig $config)
54 54
     {
55 55
         if (!$this->isValidConfig($config)) {
56
-            throw new ConfigurationException('Config is not valid for ' . ($config->getContextObject() ? get_class($config->getContextObject()) : null) . "\n" . implode("\n", $this->getErrorsArray(false)));
56
+            throw new ConfigurationException('Config is not valid for '.($config->getContextObject() ? get_class($config->getContextObject()) : null)."\n".implode("\n", $this->getErrorsArray(false)));
57 57
         }
58 58
     }
59 59
 
Please login to merge, or discard this patch.
Tests/Issues/Issue99/Issue99Test.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 
23 23
         self::assertTrue(isset($res['data']['items']));
24 24
 
25
-        foreach($res['data']['items'] as $item) {
25
+        foreach ($res['data']['items'] as $item) {
26 26
             self::assertTrue(isset($item['custom']['value']));
27 27
             self::assertEquals(self::BUG_NOT_EXISTS_VALUE, $item['custom']['value']);
28 28
         }
Please login to merge, or discard this patch.