File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -121,4 +121,4 @@ function getDumpCommand(string $connectionName): string
121121
122122it ('adds the inserts option to the pgSQL dump command ' )
123123 ->expect (fn () => getDumpCommand ('pgsql ' ))
124- ->toContain ('--inserts ' );
124+ ->toContain ('--inserts ' );
Original file line number Diff line number Diff line change 66|--------------------------------------------------------------------------
77*/
88
9- use Illuminate \Database \Schema \SchemaState ;
109use Illuminate \Support \Facades \Artisan ;
1110use Illuminate \Support \Facades \Schema ;
1211
@@ -57,7 +56,7 @@ function clearDisk(): void
5756
5857function seeInConsoleOutput (string |array $ searchStrings ): void
5958{
60- if (!is_array ($ searchStrings )) {
59+ if (! is_array ($ searchStrings )) {
6160 $ searchStrings = [$ searchStrings ];
6261 }
6362
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ protected function setupDatabase()
6262 unlink ($ databasePath );
6363 }
6464
65- if (!file_exists ($ databasePath )) {
65+ if (! file_exists ($ databasePath )) {
6666 file_put_contents ($ databasePath , '' );
6767 }
6868
You can’t perform that action at this time.
0 commit comments