Skip to content

Commit

Permalink
fabbot fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Brajk19 committed Mar 2, 2024
1 parent c184349 commit 2e13553
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ public function testArrayOfObjectsUnique()
$array = [
new DummyClassOne(),
new DummyClassOne(),
new DummyClassOne()
new DummyClassOne(),
];

$array[0]->code = '1';
Expand All @@ -311,7 +311,7 @@ public function testArrayOfObjectsUnique()
public static function normalizeDummyClassOne(DummyClassOne $obj): array
{
return [
'code' => $obj->code
'code' => $obj->code,
];
}
}
Expand Down

0 comments on commit 2e13553

Please sign in to comment.