Skip to content

Commit

Permalink
fix code styling and variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
jpvdw86 committed Dec 28, 2023
1 parent b94b214 commit ccdbe44
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -351,15 +351,15 @@ public function onEntireEntityUpdated($oldValue)
'product' => $firstProduct->id,
'productList' => [
[
'class' => $firstProduct::class,
'className' => $firstProduct::class,
'identifierValue' => $firstProduct->id,
],
[
'class' => $secondProduct::class,
'className' => $secondProduct::class,
'identifierValue' => $secondProduct->id,
],
],
]
],
])
->assertObjectAfterHydration(function (object $object) use ($doctrineEntityForm) {
self::assertSame(
Expand Down

0 comments on commit ccdbe44

Please sign in to comment.