We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | { |
58 | 58 | self::checkPromise($dataPromise); |
59 | 59 | |
60 | - return $dataPromise->then(function ($data) use ($args) { |
|
60 | + return $dataPromise->then(function($data) use ($args) { |
|
61 | 61 | return static::connectionFromArray($data, $args); |
62 | 62 | }); |
63 | 63 | } |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | { |
172 | 172 | self::checkPromise($dataPromise); |
173 | 173 | |
174 | - return $dataPromise->then(function ($arraySlice) use ($args, $meta) { |
|
174 | + return $dataPromise->then(function($arraySlice) use ($args, $meta) { |
|
175 | 175 | return static::connectionFromArraySlice($arraySlice, $args, $meta); |
176 | 176 | }); |
177 | 177 | } |
@@ -32,7 +32,7 @@ |
||
32 | 32 | $input = new Argument($args['input']); |
33 | 33 | |
34 | 34 | return $this->promiseAdapter->createFulfilled($mutateAndGetPayloadCallback($input, $context, $info)) |
35 | - ->then(function ($payload) use ($input) { |
|
35 | + ->then(function($payload) use ($input) { |
|
36 | 36 | Resolver::setObjectOrArrayValue($payload, 'clientMutationId', $input['clientMutationId']); |
37 | 37 | |
38 | 38 | return $payload; |
@@ -21,35 +21,35 @@ discard block |
||
21 | 21 | return [ |
22 | 22 | new ExpressionFunction( |
23 | 23 | 'service', |
24 | - function ($value) { |
|
24 | + function($value) { |
|
25 | 25 | return sprintf('$container->get(%s)', $value); |
26 | 26 | } |
27 | 27 | ), |
28 | 28 | |
29 | 29 | new ExpressionFunction( |
30 | 30 | 'parameter', |
31 | - function ($value) { |
|
31 | + function($value) { |
|
32 | 32 | return sprintf('$container->getParameter(%s)', $value); |
33 | 33 | } |
34 | 34 | ), |
35 | 35 | |
36 | 36 | new ExpressionFunction( |
37 | 37 | 'isTypeOf', |
38 | - function ($className) { |
|
38 | + function($className) { |
|
39 | 39 | return sprintf('($className = %s) && $value instanceof $className', $className); |
40 | 40 | } |
41 | 41 | ), |
42 | 42 | |
43 | 43 | new ExpressionFunction( |
44 | 44 | 'resolver', |
45 | - function ($alias, $args = '[]') { |
|
45 | + function($alias, $args = '[]') { |
|
46 | 46 | return sprintf('$container->get(\'overblog_graphql.resolver_resolver\')->resolve([%s, %s])', $alias, $args); |
47 | 47 | } |
48 | 48 | ), |
49 | 49 | |
50 | 50 | new ExpressionFunction( |
51 | 51 | 'mutateAndGetPayloadCallback', |
52 | - function ($mutateAndGetPayload) { |
|
52 | + function($mutateAndGetPayload) { |
|
53 | 53 | $code = 'function ($value) use ('.TypeGenerator::USE_FOR_CLOSURES.', $args, $context, $info) { '; |
54 | 54 | $code .= 'return '.$mutateAndGetPayload.'; }'; |
55 | 55 | |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | |
60 | 60 | new ExpressionFunction( |
61 | 61 | 'idFetcherCallback', |
62 | - function ($idFetcher) { |
|
62 | + function($idFetcher) { |
|
63 | 63 | $code = 'function ($value) use ('.TypeGenerator::USE_FOR_CLOSURES.', $args, $context, $info) { '; |
64 | 64 | $code .= 'return '.$idFetcher.'; }'; |
65 | 65 | |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | |
70 | 70 | new ExpressionFunction( |
71 | 71 | 'resolveSingleInputCallback', |
72 | - function ($resolveSingleInput) { |
|
72 | + function($resolveSingleInput) { |
|
73 | 73 | $code = 'function ($value) use ('.TypeGenerator::USE_FOR_CLOSURES.', $args, $context, $info) { '; |
74 | 74 | $code .= 'return '.$resolveSingleInput.'; }'; |
75 | 75 | |
@@ -79,14 +79,14 @@ discard block |
||
79 | 79 | |
80 | 80 | new ExpressionFunction( |
81 | 81 | 'mutation', |
82 | - function ($alias, $args = '[]') { |
|
82 | + function($alias, $args = '[]') { |
|
83 | 83 | return sprintf('$container->get(\'overblog_graphql.mutation_resolver\')->resolve([%s, %s])', $alias, $args); |
84 | 84 | } |
85 | 85 | ), |
86 | 86 | |
87 | 87 | new ExpressionFunction( |
88 | 88 | 'globalId', |
89 | - function ($id, $typeName = null) { |
|
89 | + function($id, $typeName = null) { |
|
90 | 90 | $typeNameEmpty = null === $typeName || '""' === $typeName || 'null' === $typeName || 'false' === $typeName; |
91 | 91 | |
92 | 92 | return sprintf( |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | |
100 | 100 | new ExpressionFunction( |
101 | 101 | 'fromGlobalId', |
102 | - function ($globalId) { |
|
102 | + function($globalId) { |
|
103 | 103 | return sprintf( |
104 | 104 | '\\Overblog\\GraphQLBundle\\Relay\\Node\\GlobalId::fromGlobalId(%s)', |
105 | 105 | $globalId |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | |
110 | 110 | new ExpressionFunction( |
111 | 111 | 'newObject', |
112 | - function ($className, $args = '[]') { |
|
112 | + function($className, $args = '[]') { |
|
113 | 113 | return sprintf('(new \ReflectionClass(%s))->newInstanceArgs(%s)', $className, $args); |
114 | 114 | } |
115 | 115 | ), |