File tree 3 files changed +3
-4
lines changed
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
121
121
122
122
it ('adds the inserts option to the pgSQL dump command ' )
123
123
->expect (fn () => getDumpCommand ('pgsql ' ))
124
- ->toContain ('--inserts ' );
124
+ ->toContain ('--inserts ' );
Original file line number Diff line number Diff line change 6
6
|--------------------------------------------------------------------------
7
7
*/
8
8
9
- use Illuminate \Database \Schema \SchemaState ;
10
9
use Illuminate \Support \Facades \Artisan ;
11
10
use Illuminate \Support \Facades \Schema ;
12
11
@@ -57,7 +56,7 @@ function clearDisk(): void
57
56
58
57
function seeInConsoleOutput (string |array $ searchStrings ): void
59
58
{
60
- if (!is_array ($ searchStrings )) {
59
+ if (! is_array ($ searchStrings )) {
61
60
$ searchStrings = [$ searchStrings ];
62
61
}
63
62
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ protected function setupDatabase()
62
62
unlink ($ databasePath );
63
63
}
64
64
65
- if (!file_exists ($ databasePath )) {
65
+ if (! file_exists ($ databasePath )) {
66
66
file_put_contents ($ databasePath , '' );
67
67
}
68
68
You can’t perform that action at this time.
0 commit comments