Skip to content

Commit 6ef150f

Browse files
committed
fixup! feat: scaffold TestCase.php with automatic migrations
1 parent d55769c commit 6ef150f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/TestCase.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

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

57
use Illuminate\Foundation\Testing\RefreshDatabase;
@@ -22,7 +24,7 @@ protected function getPackageProviders($app)
2224
];
2325
}
2426

25-
public function getEnvironmentSetUp($app)
27+
protected function getEnvironmentSetUp($app)
2628
{
2729
config()->set('database.default', 'testing');
2830
}

0 commit comments

Comments
 (0)