Skip to content

Commit c13e5df

Browse files
spawniaactions-user
authored andcommitted
Apply php-cs-fixer changes
1 parent 66750fc commit c13e5df

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

src/Language/Parser.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@
106106
* Note: this feature is experimental and may change or be removed in the
107107
* future.)
108108
* Those magic functions allow partial parsing:
109+
*
109110
* @method static NameNode name(Source|string $source, bool[] $options = [])
110111
* @method static DocumentNode document(Source|string $source, bool[] $options = [])
111112
* @method static ExecutableDefinitionNode|TypeSystemDefinitionNode definition(Source|string $source, bool[] $options = [])

src/Server/ServerConfig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public static function create(array $config = []): self
9292

9393
private ?Schema $schema = null;
9494

95-
/** @var mixed|callable(self, OperationParams $params, DocumentNode $doc): mixed|null */
95+
/** @var mixed|callable(self, OperationParams, DocumentNode $doc): mixed|null */
9696
private $context = null;
9797

9898
/**

tests/Language/AST/NodeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function testJsonSerialize(): void
6969
public function testToString(): void
7070
{
7171
self::assertJsonStringEqualsJsonString(
72-
/** @lang JSON */
72+
/** @lang JSON */
7373
'{"kind":"Name","value":"foo"}',
7474
(string) new NameNode(['value' => 'foo'])
7575
);

tests/UtilsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function chrUtf8DataProvider(): iterable
5050
public function testPrintSafeJson(): void
5151
{
5252
self::assertJsonStringEqualsJsonString(
53-
/** @lang JSON */
53+
/** @lang JSON */
5454
'{"foo":1}',
5555
Utils::printSafeJson((object) ['foo' => 1])
5656
);

0 commit comments

Comments
 (0)