tests(integration): fix new tests using legacy factories

This commit is contained in:
Matthew Penner
2021-01-20 15:37:01 -07:00
parent 64af4e8032
commit 617ebae9ae
4 changed files with 12 additions and 11 deletions

View File

@@ -3,6 +3,7 @@
namespace Pterodactyl\Models;
use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Database\Eloquent\Factories\HasFactory;
/**
* @property int $id
@@ -24,6 +25,7 @@ use Illuminate\Database\Eloquent\SoftDeletes;
*/
class Backup extends Model
{
use HasFactory;
use SoftDeletes;
const RESOURCE_NAME = 'backup';