Skip to content

Commit eaea076

Browse files
Merge pull request #15 from TheDragonCode/code-style-y4d3quq
The code style has been fixed
2 parents fe75ddd + f898ed0 commit eaea076

File tree

8 files changed

+16
-0
lines changed

8 files changed

+16
-0
lines changed

config/settings.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
return [
46
/*
57
|--------------------------------------------------------------------------

tests/Pest.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
use Illuminate\Foundation\Testing\RefreshDatabase;
46
use Tests\TestCase;
57

tests/TestCase.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Tests;
46

57
use DragonCode\LaravelDataDumper\ServiceProvider;

tests/Unit/Dumps/DataTest.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
use Illuminate\Database\Console\DumpCommand;
46
use Illuminate\Support\Facades\Artisan;
57

tests/Unit/Dumps/DeleteFilesTest.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
use DragonCode\Support\Facades\Filesystem\Directory;
46
use DragonCode\Support\Facades\Filesystem\File;
57
use Illuminate\Database\Console\DumpCommand;

tests/Unit/Migrations/MySQLTest.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
test('checks an attempt to export the migration table from mysql', function () {
46
expect('INSERT INTO `%s`')->toBeDumped(6);
57
})->group('MySQL');
+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
test('checks an attempt to export the migration table from postgres', function () {
46
expect('COPY public.%s')->toBeDumped(1);
57
})->group('Postgres');

tests/Unit/Migrations/SQLiteTest.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
test('checks an attempt to export the migration table from sqlite', function () {
46
expect('INSERT INTO %s')->toBeDumped(6);
57
})->group('SQLite');

0 commit comments

Comments
 (0)