13 lines
172 B
PHP
13 lines
172 B
PHP
<?php
|
|
class Throttle extends Elegant
|
|
{
|
|
|
|
protected $table = 'throttle';
|
|
public function user()
|
|
{
|
|
return $this->belongsTo('User', 'user_id');
|
|
}
|
|
|
|
|
|
}
|