Skip to content

Commit b6664dd

Browse files
Kreyugithub-actions[bot]
authored andcommitted
Apply php-cs-fixer changes
1 parent aec7354 commit b6664dd

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

tests/Unit/Column/Type/CollectionColumnTypeTest.php

+6-3
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,11 @@ public function testWithNonScalarValues(array $collection): void
9999
{
100100
$column = $this->createColumn();
101101

102-
$data = new class ($collection) {
103-
public function __construct(public array $collection) {}
102+
$data = new class($collection) {
103+
public function __construct(
104+
public array $collection,
105+
) {
106+
}
104107
};
105108

106109
$valueRowView = $this->createValueRowView(data: $data);
@@ -116,6 +119,6 @@ public static function provideNonScalarValuesCases(): iterable
116119

117120
yield 'Enums' => [[UnitEnum::Foo, TranslatableEnum::Bar]];
118121

119-
yield 'stdClass' => [[new \stdClass, (object) ['foo' => 'bar']]];
122+
yield 'stdClass' => [[new \stdClass(), (object) ['foo' => 'bar']]];
120123
}
121124
}

0 commit comments

Comments
 (0)