From e5002029b4510bcc5a0515af19d9250759b87e35 Mon Sep 17 00:00:00 2001 From: Simone Date: Sat, 12 Oct 2024 14:14:23 +0200 Subject: [PATCH] lint --- tests/Fixtures/Level.php | 8 -------- tests/Models/LevelTestWithCustomModel.php | 2 -- 2 files changed, 10 deletions(-) diff --git a/tests/Fixtures/Level.php b/tests/Fixtures/Level.php index 052461e..548226f 100644 --- a/tests/Fixtures/Level.php +++ b/tests/Fixtures/Level.php @@ -2,14 +2,6 @@ namespace LevelUp\Experience\Tests\Fixtures; -use Illuminate\Database\Eloquent\Factories\Factory; -use Illuminate\Database\Eloquent\Factories\HasFactory; -use Illuminate\Database\Eloquent\Model; -use LevelUp\Experience\Concerns\GiveExperience; -use LevelUp\Experience\Concerns\HasAchievements; -use LevelUp\Experience\Concerns\HasStreaks; -use LevelUp\Experience\Tests\Fixtures\Factories\UserFactory; - class Level extends \LevelUp\Experience\Models\Level { public function extra_function(): string diff --git a/tests/Models/LevelTestWithCustomModel.php b/tests/Models/LevelTestWithCustomModel.php index 5ab16ec..e01d098 100644 --- a/tests/Models/LevelTestWithCustomModel.php +++ b/tests/Models/LevelTestWithCustomModel.php @@ -1,7 +1,6 @@ group('levels'); @@ -9,7 +8,6 @@ config()->set('level-up.models.level', \LevelUp\Experience\Tests\Fixtures\Level::class); }); - it(description: 'is a custom model', closure: function (): void { $levelClass = config('level-up.models.level');