mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 05:02:21 +00:00
22 lines
506 B
PHP
22 lines
506 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* App\Models\ReleaseSearchData.
|
|
*
|
|
* @mixin \Eloquent
|
|
*
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ReleaseSearchData newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ReleaseSearchData newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ReleaseSearchData query()
|
|
*/
|
|
class ReleaseSearchData extends Model
|
|
{
|
|
//
|
|
}
|