mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 03:01:34 +00:00
59f09bf2cf
[ci skip] [skip ci]
30 lines
1.3 KiB
PHP
30 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* App\Models\CategoryRegex.
|
|
*
|
|
* @property int $id
|
|
* @property string $group_regex This is a regex to match against usenet groups
|
|
* @property string $regex Regex used to match a release name to categorize it
|
|
* @property bool $status 1=ON 0=OFF
|
|
* @property string $description Optional extra details on this regex
|
|
* @property int $ordinal Order to run the regex in
|
|
* @property int $categories_id Which categories id to put the release in
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CategoryRegex whereCategoriesId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CategoryRegex whereDescription($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CategoryRegex whereGroupRegex($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CategoryRegex whereId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CategoryRegex whereOrdinal($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CategoryRegex whereRegex($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CategoryRegex whereStatus($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class CategoryRegex extends Model
|
|
{
|
|
//
|
|
}
|