Files
newznab-tmux-NNTmux/app/Models/BinaryBlacklist.php
T
DariusIII 24fa162413 Apply fixes from StyleCI
[ci skip] [skip ci]
2017-08-31 09:31:28 +00:00

38 lines
496 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class BinaryBlacklist extends Model
{
/**
* @var string
*/
protected $table = 'binaryblacklist';
/**
* @var bool
*/
public $timestamps = false;
/**
* @var bool
*/
protected $dateFormat = false;
/**
* @var array
*/
protected $fillable = [
'id',
'groupname',
'regex',
'msgcol',
'optype',
'status',
'description',
'last_activity',
];
}