Fix Laravel Pint formatting

This commit is contained in:
root
2026-06-08 23:30:22 -04:00
parent 567dc24649
commit c792b8be05
1288 changed files with 10766 additions and 9669 deletions
+4 -5
View File
@@ -2,8 +2,6 @@
namespace App\Models;
use App\Models\BaseModel;
class IpAttempt extends BaseModel
{
protected $table = 'ip_attempts';
@@ -21,9 +19,9 @@ class IpAttempt extends BaseModel
];
protected $casts = [
'attempts' => 'integer',
'attempts' => 'integer',
'last_attempt_at' => 'datetime',
'blocked_until' => 'datetime',
'blocked_until' => 'datetime',
];
/**
@@ -53,6 +51,7 @@ class IpAttempt extends BaseModel
public static function insertIpAttempt(array $data): int
{
$row = static::query()->create($data);
return (int) $row->id;
}
}
}