Skip to content

Commit ea6be0a

Browse files
alexmanasegithub-actions[bot]
authored andcommitted
Fix styling
1 parent e7ca1a3 commit ea6be0a

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

tests/DbDumperFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,4 +121,4 @@ function getDumpCommand(string $connectionName): string
121121

122122
it('adds the inserts option to the pgSQL dump command')
123123
->expect(fn () => getDumpCommand('pgsql'))
124-
->toContain('--inserts');
124+
->toContain('--inserts');

tests/Pest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
|--------------------------------------------------------------------------
77
*/
88

9-
use Illuminate\Database\Schema\SchemaState;
109
use Illuminate\Support\Facades\Artisan;
1110
use Illuminate\Support\Facades\Schema;
1211

@@ -57,7 +56,7 @@ function clearDisk(): void
5756

5857
function seeInConsoleOutput(string|array $searchStrings): void
5958
{
60-
if (!is_array($searchStrings)) {
59+
if (! is_array($searchStrings)) {
6160
$searchStrings = [$searchStrings];
6261
}
6362

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)