Referer::searchTerms()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 6
ccs 3
cts 3
cp 1
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
crap 1
1
<?php namespace Arcanedev\LaravelTracker\Models;
2
3
use Arcanedev\LaravelTracker\Contracts\Models\Referer as RefererContract;
4
use Arcanedev\LaravelTracker\Support\BindingManager;
5
6
/**
7
 * Class     Referer
8
 *
9
 * @package  Arcanedev\LaravelTracker\Models
10
 * @author   ARCANEDEV <[email protected]>
11
 *
12
 * @property  int             id
13
 * @property  int             domain_id
14
 * @property  string          url
15
 * @property  string          host
16
 * @property  string          medium
17
 * @property  string          source
18
 * @property  string          search_terms_hash
19
 * @property  \Carbon\Carbon  created_at
20
 * @property  \Carbon\Carbon  updated_at
21
 *
22
 * @property  \Arcanedev\LaravelTracker\Models\Domain   domain
23
 * @property  \Illuminate\Database\Eloquent\Collection  search_terms
24
 */
25
class Referer extends AbstractModel implements RefererContract
26
{
27
    /* -----------------------------------------------------------------
28
     |  Properties
29
     | -----------------------------------------------------------------
30
     */
31
32
    /**
33
     * The table associated with the model.
34
     *
35
     * @var string
36
     */
37
    protected $table = 'referers';
38
39
    /**
40
     * The attributes that are mass assignable.
41
     *
42
     * @var array
43
     */
44
    protected $fillable = [
45
        'url',
46
        'host',
47
        'domain_id',
48
        'medium',
49
        'source',
50
        'search_terms_hash',
51
    ];
52
53
    /**
54
     * The attributes that should be cast to native types.
55
     *
56
     * @var array
57
     */
58
    protected $casts = [
59
        'id'        => 'integer',
60
        'domain_id' => 'integer',
61
    ];
62
63
    /* -----------------------------------------------------------------
64
     |  Relationships
65
     | -----------------------------------------------------------------
66
     */
67
68
    /**
69
     * Domain relationship.
70
     *
71
     * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
72
     */
73
    public function domain()
74
    {
75
        return $this->belongsTo(
76
            $this->getModelClass(BindingManager::MODEL_DOMAIN, Domain::class)
77
        );
78
    }
79
80
    /**
81
     * Search terms relationship.
82
     *
83
     * @return \Illuminate\Database\Eloquent\Relations\HasMany
84
     */
85 3
    public function searchTerms()
86
    {
87 3
        return $this->hasMany(
88 3
            $this->getModelClass(BindingManager::MODEL_REFERER_SEARCH_TERM, RefererSearchTerm::class)
89
        );
90
    }
91
}
92