Page MenuHomePhorge

RateLimit.php
No OneTemporary

Size
457 B
Referenced Files
None
Subscribers
None

RateLimit.php

<?php
namespace App\Policy;
use App\Traits\BelongsToUserTrait;
use Illuminate\Database\Eloquent\Model;
class RateLimit extends Model
{
use BelongsToUserTrait;
/** @var array<int, string> The attributes that are mass assignable */
protected $fillable = [
'user_id',
'owner_id',
'recipient_hash',
'recipient_count'
];
/** @var string Database table name */
protected $table = 'policy_ratelimit';
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Nov 21, 5:21 AM (1 d, 58 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
387392
Default Alt Text
RateLimit.php (457 B)

Event Timeline