Skip to content

Commit 6ba5647

Browse files
daniel-cintragithub-actions[bot]
authored andcommitted
Fix styling
1 parent 7bebf2e commit 6ba5647

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

src/Console/CoreModules.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,10 @@ protected function migrateDatabase(): void
8585
protected function seedDatabase(): void
8686
{
8787
(new Process([$this->phpBinary(), 'artisan', 'db:seed', '--class=Modules\User\Database\Seeders\UserSeeder'], base_path()))
88-
->setTimeout(null)
89-
->run(function ($type, $output) {
90-
$this->output->write($output);
91-
});
88+
->setTimeout(null)
89+
->run(function ($type, $output) {
90+
$this->output->write($output);
91+
});
9292
}
9393

9494
protected function configureModulesProviders(): void

stubs/modules/Support/Tests/EditorImageTraitTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44
use Illuminate\Foundation\Testing\RefreshDatabase;
55
use Illuminate\Http\UploadedFile;
66
use Modules\Support\Traits\EditorImage;
7-
use function PHPUnit\Framework\assertFileExists;
87
use Tests\TestCase;
98

9+
use function PHPUnit\Framework\assertFileExists;
10+
1011
uses(TestCase::class, RefreshDatabase::class, EditorImage::class);
1112

1213
beforeEach(function () {

0 commit comments

Comments
 (0)