Skip to content

Commit 88182ba

Browse files
authored
Merge pull request #8 from crissi/analysis-87KQQ3
Apply fixes from StyleCI
2 parents 76f16fa + 522fed0 commit 88182ba

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

tests/Database/SelectFields/NestedRelationLoadingTests/NestedRelationLoadingTest.php

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -821,9 +821,7 @@ public function testRelationshipAlias(): void
821821
]);
822822
});
823823

824-
825-
826-
$graphql = <<<GRAQPHQL
824+
$graphql = <<<'GRAQPHQL'
827825
{
828826
users(select: true, with: true) {
829827
id
@@ -840,7 +838,6 @@ public function testRelationshipAlias(): void
840838

841839
$this->sqlCounterReset();
842840

843-
844841
$result = GraphQL::query($graphql);
845842

846843
$this->assertSqlQueries(
@@ -860,7 +857,7 @@ public function testRelationshipAlias(): void
860857
[
861858
'body' => $users[0]->posts[0]->body,
862859
'id' => (string) $users[0]->posts[0]->id,
863-
'title' => $users[0]->posts[0]->title
860+
'title' => $users[0]->posts[0]->title,
864861
],
865862
],
866863
],
@@ -871,7 +868,6 @@ public function testRelationshipAlias(): void
871868
$this->assertEquals($expectedResult, $result);
872869
}
873870

874-
875871
protected function getEnvironmentSetUp($app)
876872
{
877873
parent::getEnvironmentSetUp($app);

0 commit comments

Comments
 (0)