| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class Click extends Model |
||
| 8 | { |
||
| 9 | const UPDATED_AT = null; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * The attributes that are mass assignable. |
||
| 13 | * |
||
| 14 | * @var array |
||
| 15 | */ |
||
| 16 | protected $fillable = ['url_id', 'country', 'region', 'city', 'device_type', 'device_brand', 'device_model', 'user_agent', 'os', 'browser', 'referer', 'referer_host', 'created_at']; |
||
| 17 | |||
| 18 | public function url() |
||
| 23 |