8000 minor #60284 Unnecessary cast, return, semicolon and comma (wkania) · symfony/doctrine-bridge@fcce66e · GitHub
[go: up one dir, main page]

Skip to content

Commit fcce66e

Browse files
committed
minor #60284 Unnecessary cast, return, semicolon and comma (wkania)
This PR was merged into the 6.4 branch. Discussion ---------- Unnecessary cast, return, semicolon and comma | Q | A | ------------- | --- | Branch? | 6.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Issues | | License | MIT isEqualTo always return null. Commits ------- 23cc764efab Unnecessary cast, return, semicolon and comma
2 parents f320d99 + 8adff19 commit fcce66e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/ArgumentResolver/EntityValueResolverTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public function testResolveWithArrayIdNullValue()
153153
$request = new Request();
154154
$request->attributes->set('nullValue', null);
155155

156-
$argument = $this->createArgument(entity: new MapEntity(id: ['nullValue']), isNullable: true,);
156+
$argument = $this->createArgument(entity: new MapEntity(id: ['nullValue']), isNullable: true);
157157

158158
$this->assertSame([null], $resolver->resolve($request, $argument));
159159
}

0 commit comments

Comments
 (0)
0