Completed
Push — master ( 3b79f3...426227 )
by Kirill
03:11
created
Builders/InterfaceBuilder.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
  * For the full copyright and license information, please view the LICENSE
6 6
  * file that was distributed with this source code.
7 7
  */
8
-declare(strict_types=1);
8
+declare(strict_types = 1);
9 9
 
10 10
 namespace Railt\Adapters\Webonyx\Builders;
11 11
 
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
         return new InterfaceType([
27 27
             'name'        => $this->reflection->getName(),
28 28
             'description' => $this->reflection->getDescription(),
29
-            'fields'      => function (): array {
29
+            'fields'      => function(): array {
30 30
                 return [];
31 31
             },
32 32
         ]);
Please login to merge, or discard this patch.
Builders/ObjectBuilder.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
  * For the full copyright and license information, please view the LICENSE
6 6
  * file that was distributed with this source code.
7 7
  */
8
-declare(strict_types=1);
8
+declare(strict_types = 1);
9 9
 
10 10
 namespace Railt\Adapters\Webonyx\Builders;
11 11
 
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
         return new ObjectType([
28 28
             'name'        => $this->reflection->getName(),
29 29
             'description' => $this->reflection->getDescription(),
30
-            'fields'      => function (): array {
30
+            'fields'      => function(): array {
31 31
                 return FieldBuilder::buildFields($this->reflection, $this->getRegistry());
32 32
             },
33 33
             'interfaces'  => $this->buildInterfaces(),
Please login to merge, or discard this patch.
Builders/SchemaBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
  * For the full copyright and license information, please view the LICENSE
6 6
  * file that was distributed with this source code.
7 7
  */
8
-declare(strict_types=1);
8
+declare(strict_types = 1);
9 9
 
10 10
 namespace Railt\Adapters\Webonyx\Builders;
11 11
 
Please login to merge, or discard this patch.