Total Complexity | 4 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | abstract class TestCase extends BaseTestCase |
||
10 | { |
||
11 | use RefreshDatabase; |
||
|
|||
12 | |||
13 | public function setUp(): void |
||
14 | { |
||
15 | parent::setUp(); |
||
16 | } |
||
17 | |||
18 | protected function defineDatabaseMigrations() |
||
22 | } |
||
23 | |||
24 | protected function getPackageProviders($app): array |
||
25 | { |
||
26 | return [DynamicMailConfigServiceProvider::class]; |
||
27 | } |
||
28 | |||
29 | protected function getEnvironmentSetUp($app) { |
||
33 | ]); |
||
34 | } |
||
36 |