Browse Source

Shift cleanup

Shift 2 years ago
parent
commit
0e3f6c98aa

+ 1 - 0
app/Models/ApplicationApi.php

@@ -15,6 +15,7 @@ class ApplicationApi extends Model
     protected $primaryKey = 'token';
 
     public $incrementing = false;
+
     protected $casts = [
         'last_used' => 'datetime',
     ];

+ 1 - 0
app/Models/Voucher.php

@@ -25,6 +25,7 @@ class Voucher extends Model
         'uses',
         'expires_at',
     ];
+
     /**
      * The attributes that should be cast to native types.
      *

+ 0 - 1
app/Providers/EventServiceProvider.php

@@ -54,4 +54,3 @@ class EventServiceProvider extends ServiceProvider
         return false;
     }
 }
-

+ 0 - 1
database/factories/ApplicationApiFactory.php

@@ -2,7 +2,6 @@
 
 namespace Database\Factories;
 
-use App\Models\ApplicationApi;
 use Illuminate\Database\Eloquent\Factories\Factory;
 
 class ApplicationApiFactory extends Factory

+ 0 - 1
database/factories/DiscordUserFactory.php

@@ -2,7 +2,6 @@
 
 namespace Database\Factories;
 
-use App\Models\DiscordUser;
 use App\Models\User;
 use Illuminate\Database\Eloquent\Factories\Factory;
 use Illuminate\Support\Str;

+ 0 - 1
database/factories/PaymentFactory.php

@@ -2,7 +2,6 @@
 
 namespace Database\Factories;
 
-use App\Models\Payment;
 use App\Models\User;
 use Illuminate\Database\Eloquent\Factories\Factory;
 use Illuminate\Support\Str;

+ 0 - 1
database/factories/ProductFactory.php

@@ -2,7 +2,6 @@
 
 namespace Database\Factories;
 
-use App\Models\Product;
 use Illuminate\Database\Eloquent\Factories\Factory;
 
 class ProductFactory extends Factory

+ 0 - 1
database/factories/ServerFactory.php

@@ -3,7 +3,6 @@
 namespace Database\Factories;
 
 use App\Models\Product;
-use App\Models\Server;
 use Illuminate\Database\Eloquent\Factories\Factory;
 use Illuminate\Support\Str;
 

+ 0 - 1
database/factories/UsefulLinkFactory.php

@@ -2,7 +2,6 @@
 
 namespace Database\Factories;
 
-use App\Models\UsefulLink;
 use Illuminate\Database\Eloquent\Factories\Factory;
 
 class UsefulLinkFactory extends Factory

+ 0 - 1
database/factories/UserFactory.php

@@ -2,7 +2,6 @@
 
 namespace Database\Factories;
 
-use App\Models\User;
 use Illuminate\Database\Eloquent\Factories\Factory;
 use Illuminate\Support\Str;