Skip to content

Commit c7b67fd

Browse files
committed
fix: StyleCI
1 parent f4c3443 commit c7b67fd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ protected function getResponseBody(Response $response): array
3535

3636
protected function getPackageProviders($app)
3737
{
38-
return [ ViewModelsServiceProvider::class ];
38+
return [ViewModelsServiceProvider::class];
3939
}
4040
}

tests/ViewModelMakeCommandTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function creates_file_in_default_folder()
1919

2020
$this->assertContains('ViewModel created successfully.', Artisan::output());
2121

22-
$shouldOutputFilePath = $this->app['path'] . '/ViewModels/HomeViewModel.php';
22+
$shouldOutputFilePath = $this->app['path'].'/ViewModels/HomeViewModel.php';
2323

2424
$this->assertTrue(File::exists($shouldOutputFilePath), 'File exists in default app/ViewModels folder');
2525

@@ -42,7 +42,7 @@ public function creates_file_in_custom_folder()
4242

4343
$this->assertContains('ViewModel created successfully.', Artisan::output());
4444

45-
$shouldOutputFilePath = $this->app['path'] . '/Blog/PostsViewModel.php';
45+
$shouldOutputFilePath = $this->app['path'].'/Blog/PostsViewModel.php';
4646

4747
$this->assertTrue(File::exists($shouldOutputFilePath), 'File exists in custom app/Blog folder');
4848

0 commit comments

Comments
 (0)