Completed
Push — 2.0 ( f2914f...3a165e )
by Kirill
03:16 queued 22s
created
server/app/GraphQL/Feature/EnumsSupport.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
  * For the full copyright and license information, please view the LICENSE
5 5
  * file that was distributed with this source code.
6 6
  */
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 
9 9
 namespace App\GraphQL\Feature;
10 10
 
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     {
34 34
         $this->transfer = new EnumTransfer();
35 35
 
36
-        $this->addFieldsWrapper(function (array $arguments) {
36
+        $this->addFieldsWrapper(function(array $arguments) {
37 37
             foreach ($arguments as $key => $data) {
38 38
                 yield $key => $this->configs($data);
39 39
             }
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      */
48 48
     private function configs(array $config): array
49 49
     {
50
-        if (! $this->isGraphQLType($config)) {
50
+        if (!$this->isGraphQLType($config)) {
51 51
             $config['type'] = $this->wrapType($config['type']);
52 52
         }
53 53
 
Please login to merge, or discard this patch.