Skip to content

Commit ae0d7f8

Browse files
committed
fix
1 parent 8a65dc6 commit ae0d7f8

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

tests/src/Stubs/Migrations/0000_00_00_000000_create_channels_table.php renamed to tests/src/Stubs/Migrations/create_channels_table.php

File renamed without changes.

tests/src/TestCase.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
namespace Yuges\Subscribable\Tests;
44

55
use Illuminate\Contracts\Config\Repository;
6-
use Orchestra\Testbench\Attributes\WithMigration;
6+
use Orchestra\Testbench\Attributes\WithMigration;
77
use Illuminate\Foundation\Testing\RefreshDatabase;
88
use Yuges\Subscribable\Providers\SubscribableServiceProvider;
99

10-
#[WithMigration]
10+
#[WithMigration]
1111
class TestCase extends \Orchestra\Testbench\TestCase
1212
{
1313
use RefreshDatabase;
@@ -26,14 +26,14 @@ protected function defineEnvironment($app)
2626
});
2727
}
2828

29-
protected function getPackageProviders($app)
29+
protected function getPackageProviders($app)
3030
{
3131
return [
3232
SubscribableServiceProvider::class,
3333
];
3434
}
3535

36-
protected function defineDatabaseMigrations()
36+
protected function defineDatabaseMigrations()
3737
{
3838
$this->loadMigrationsFrom([
3939
__DIR__ . '/../../database/migrations/',

0 commit comments

Comments
 (0)