Latest pint fixes

This commit is contained in:
DariusIII
2026-03-11 10:11:30 +01:00
parent 91361345ed
commit 4bca02f103
169 changed files with 754 additions and 480 deletions
+5 -4
View File
@@ -4,6 +4,7 @@ declare(strict_types=1);
namespace App\Models;
use Carbon\Carbon;
use Illuminate\Contracts\Pagination\LengthAwarePaginator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
@@ -21,8 +22,8 @@ use Illuminate\Database\Eloquent\Relations\BelongsTo;
* @property string $text_hash
* @property string $username
* @property int $users_id
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @property string|null $host
* @property bool $shared
* @property string $shareid
@@ -67,7 +68,7 @@ class ReleaseComment extends Model
protected $dateFormat = false;
/**
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo<\App\Models\Release, $this>
* @return BelongsTo<Release, $this>
*/
public function release(): BelongsTo
{
@@ -75,7 +76,7 @@ class ReleaseComment extends Model
}
/**
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo<\App\Models\User, $this>
* @return BelongsTo<User, $this>
*/
public function user(): BelongsTo
{