Link::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 4
rs 10
c 0
b 0
f 0
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
    }