Link   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 11
dl 0
loc 18
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
	namespace Ako\Shorturl\Models;
4
	
5
	use Illuminate\Database\Eloquent\Model;
6
	
7
	class Link extends Model
8
	{
9
		protected  $fillable = [
10
			'short_path',
11
			'long_path',
12
			'base_url',
13
			'clicks',
14
			'properties'
15
		];
16
		
17
		protected  $casts = [
18
			'properties' => 'collection'
19
		];
20
21
		public function __construct(array $attributes = [])
22
        {
23
            $this->table = config('shorturl.drivers.local.table_name');
24
            parent::__construct($attributes);
25
        }
26
    }