Skip to content

Commit 74d9d41

Browse files
maurobaptistagithub-actions[bot]
authored andcommitted
Fix styling
1 parent 9372330 commit 74d9d41

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Components.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public function table(array $header, array $data): void
8484

8585
foreach ($data as $row) {
8686
$message .= '<tr>' . array_reduce(
87-
$row,
87+
$row,
8888
fn (?string $carry, string $column) => $carry . "<td>$column</td>"
8989
) . '<tr>';
9090
}

src/Extensions/SlowestTests.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace MauroBaptista\SlowTests\Extensions;
44

5-
use Closure;
65
use MauroBaptista\SlowTests\Components;
76
use PHPUnit\Runner\AfterLastTestHook;
87
use PHPUnit\Runner\AfterTestHook;
@@ -24,7 +23,8 @@ class SlowestTests implements BeforeFirstTestHook, AfterTestHook, AfterLastTestH
2423
public function __construct(public int $show = 10, public array $threshold = [
2524
'success' => 0.1,
2625
'warning' => 1,
27-
]) {
26+
])
27+
{
2828
$this->components = new Components();
2929
}
3030

0 commit comments

Comments
 (0)