Files
UNIT3D-Community-Edition/app/Models/Distributor.php
T
Roardom ca4ea3dd92 fix: remove or rename invalid model relations
Requests don't have distributor or region relations, and Announce relations were renamed incorrectly. The relations don't appear to be used for anything currently.
2025-10-03 05:11:31 +00:00

61 lines
1.3 KiB
PHP

<?php
declare(strict_types=1);
/**
* NOTICE OF LICENSE.
*
* UNIT3D is open-sourced software licensed under the GNU Affero General Public License v3.0
* The details is bundled with this project in the file LICENSE.txt.
*
* @project UNIT3D
*
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
* @author HDVinnie
*/
namespace App\Models;
use App\Traits\Auditable;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\HasMany;
/**
* App\Models\Distributor.
*
* @property int $id
* @property string $name
*/
class Distributor extends Model
{
use Auditable;
/** @use HasFactory<\Database\Factories\DistributorFactory> */
use HasFactory;
/**
* Indicates if the model should be timestamped.
*
* @var bool
*/
public $timestamps = false;
/**
* The attributes that aren't mass assignable.
*
* @var string[]
*/
protected $guarded = ['id', 'created_at', 'updated_at'];
/**
* Get the torrents for this distributor.
*
* @return HasMany<Torrent, $this>
*/
public function torrents(): HasMany
{
return $this->hasMany(Torrent::class);
}
}