Skip to content

Commit 97cfb04

Browse files
bram-pkgactions-user
authored andcommitted
Fix styling
1 parent e0f661c commit 97cfb04

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

tests/ChangelogTest.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
namespace BlameButton\Laravel\Changelog\Tests;
44

55
use BlameButton\Laravel\Changelog\Changelog;
6-
use BlameButton\Laravel\Changelog\ChangelogFacade;
76
use BlameButton\Laravel\Changelog\ChangelogServiceProvider;
87
use Illuminate\Support\Facades\Storage;
98
use Mockery\MockInterface;
@@ -32,9 +31,9 @@ public function testRaw(): void
3231
Storage::put(base_path('CHANGELOG.md'), $expected);
3332

3433
/** @var Changelog $changelog */
35-
$changelog = $this->mock(Changelog::class, function(MockInterface $mock) {
36-
$mock->shouldReceive('path')->andReturn(Storage::path(base_path('CHANGELOG.md')));
37-
$mock->shouldReceive('raw')->passthru();
34+
$changelog = $this->mock(Changelog::class, function (MockInterface $mock) {
35+
$mock->shouldReceive('path')->andReturn(Storage::path(base_path('CHANGELOG.md')));
36+
$mock->shouldReceive('raw')->passthru();
3837
});
3938

4039
$content = $changelog->raw();

0 commit comments

Comments
 (0)