From 73e75b63143f707c3d7cc015d3f53c3d4be5a621 Mon Sep 17 00:00:00 2001 From: Simon Podlipsky Date: Wed, 26 Sep 2018 11:03:10 +0200 Subject: [PATCH] Fix CS in src --- src/Deferred.php | 11 +++++++---- src/GraphQL.php | 19 +++++++++++++------ 2 files changed, 20 insertions(+), 10 deletions(-) diff --git a/src/Deferred.php b/src/Deferred.php index 6e962de..197eeeb 100644 --- a/src/Deferred.php +++ b/src/Deferred.php @@ -4,11 +4,14 @@ declare(strict_types=1); namespace GraphQL; +use Exception; use GraphQL\Executor\Promise\Adapter\SyncPromise; +use SplQueue; +use Throwable; class Deferred { - /** @var \SplQueue */ + /** @var SplQueue */ private static $queue; /** @var callable */ @@ -19,7 +22,7 @@ class Deferred public static function getQueue() { - return self::$queue ?: self::$queue = new \SplQueue(); + return self::$queue ?: self::$queue = new SplQueue(); } public static function runQueue() @@ -49,9 +52,9 @@ class Deferred try { $cb = $this->callback; $this->promise->resolve($cb()); - } catch (\Exception $e) { + } catch (Exception $e) { $this->promise->reject($e); - } catch (\Throwable $e) { + } catch (Throwable $e) { $this->promise->reject($e); } } diff --git a/src/GraphQL.php b/src/GraphQL.php index f7915bb..e6fe8c9 100644 --- a/src/GraphQL.php +++ b/src/GraphQL.php @@ -64,12 +64,13 @@ class GraphQL * Empty array would allow to skip query validation (may be convenient for persisted * queries which are validated before persisting and assumed valid during execution) * - * @api * @param string|DocumentNode $source * @param mixed $rootValue * @param mixed $context * @param mixed[]|null $variableValues * @param ValidationRule[] $validationRules + * + * @api */ public static function executeQuery( SchemaType $schema, @@ -102,12 +103,13 @@ class GraphQL * Same as executeQuery(), but requires PromiseAdapter and always returns a Promise. * Useful for Async PHP platforms. * - * @api * @param string|DocumentNode $source * @param mixed $rootValue * @param mixed $context * @param mixed[]|null $variableValues * @param ValidationRule[]|null $validationRules + * + * @api */ public static function promiseToExecute( PromiseAdapter $promiseAdapter, @@ -174,6 +176,7 @@ class GraphQL * @param mixed $rootValue * @param mixed $contextValue * @param mixed[]|null $variableValues + * * @return Promise|mixed[] */ public static function execute( @@ -203,7 +206,7 @@ class GraphQL if ($promiseAdapter instanceof SyncPromiseAdapter) { $result = $promiseAdapter->wait($result)->toArray(); } else { - $result = $result->then(function (ExecutionResult $r) { + $result = $result->then(static function (ExecutionResult $r) { return $r->toArray(); }); } @@ -255,8 +258,9 @@ class GraphQL /** * Returns directives defined in GraphQL spec * - * @api * @return Directive[] + * + * @api */ public static function getStandardDirectives() : array { @@ -266,8 +270,9 @@ class GraphQL /** * Returns types defined in GraphQL spec * - * @api * @return Type[] + * + * @api */ public static function getStandardTypes() : array { @@ -277,8 +282,9 @@ class GraphQL /** * Returns standard validation rules implementing GraphQL spec * - * @api * @return ValidationRule[] + * + * @api */ public static function getStandardValidationRules() : array { @@ -299,6 +305,7 @@ class GraphQL * Returns directives defined in GraphQL spec * * @deprecated Renamed to getStandardDirectives + * * @return Directive[] */ public static function getInternalDirectives() : array