Skip to content

Commit 0187f99

Browse files
Nielsvanpachactions-user
authored andcommitted
Fix styling
1 parent a04a554 commit 0187f99

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

src/MatchesSnapshots.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515

1616
trait MatchesSnapshots
1717
{
18-
use SnapshotDirectoryAware, SnapshotIdAware;
18+
use SnapshotDirectoryAware;
19+
use SnapshotIdAware;
1920

2021
protected int $snapshotIncrementor = 0;
2122

tests/Integration/ComparesSnapshotFiles.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ protected function copyDirectory(string $sourcePath, string $destinationPath)
5959

6060
if (is_dir($sourcePath.'/'.$file)) {
6161
$this->copyDirectory($sourcePath.'/'.$file, $destinationPath.'/'.$file);
62+
6263
continue;
6364
}
6465

tests/Integration/MatchesSnapshotTest.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,11 @@ private function getMatchesSnapshotMock(): MockObject
443443

444444
$matchesSnapshotMock = $this->getMockForTrait(
445445
MatchesSnapshots::class,
446-
[], '', true, true, true,
446+
[],
447+
'',
448+
true,
449+
true,
450+
true,
447451
$mockMethods
448452
);
449453

0 commit comments

Comments
 (0)