File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,6 @@ protected function getResponseBody(Response $response): array
35
35
36
36
protected function getPackageProviders ($ app )
37
37
{
38
- return [ ViewModelsServiceProvider::class ];
38
+ return [ViewModelsServiceProvider::class];
39
39
}
40
40
}
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ public function creates_file_in_default_folder()
19
19
20
20
$ this ->assertContains ('ViewModel created successfully. ' , Artisan::output ());
21
21
22
- $ shouldOutputFilePath = $ this ->app ['path ' ] . '/ViewModels/HomeViewModel.php ' ;
22
+ $ shouldOutputFilePath = $ this ->app ['path ' ]. '/ViewModels/HomeViewModel.php ' ;
23
23
24
24
$ this ->assertTrue (File::exists ($ shouldOutputFilePath ), 'File exists in default app/ViewModels folder ' );
25
25
@@ -42,7 +42,7 @@ public function creates_file_in_custom_folder()
42
42
43
43
$ this ->assertContains ('ViewModel created successfully. ' , Artisan::output ());
44
44
45
- $ shouldOutputFilePath = $ this ->app ['path ' ] . '/Blog/PostsViewModel.php ' ;
45
+ $ shouldOutputFilePath = $ this ->app ['path ' ]. '/Blog/PostsViewModel.php ' ;
46
46
47
47
$ this ->assertTrue (File::exists ($ shouldOutputFilePath ), 'File exists in custom app/Blog folder ' );
48
48
You can’t perform that action at this time.
0 commit comments