Skip to content

Commit 8ddfe27

Browse files
committed
[Style] Fix anonymous class spacing to satisfy StyleCI
1 parent 65b677c commit 8ddfe27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Support/SupportArrTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1648,7 +1648,7 @@ public function testFrom()
16481648
$this->assertSame($subject, Arr::from($items));
16491649

16501650
$items = new WeakMap;
1651-
$items[$temp = new class{}] = 'bar';
1651+
$items[$temp = new class {}] = 'bar';
16521652
$this->assertSame(['bar'], Arr::from($items));
16531653

16541654
$this->expectException(InvalidArgumentException::class);

0 commit comments

Comments
 (0)