Passed
Push — dev5 ( 3ab1f5...1f5b4d )
by Ron
06:22
created

TechTipComments   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 7
c 1
b 0
f 0
dl 0
loc 17
ccs 2
cts 2
cp 1
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A user() 0 3 1
1
<?php
2
3
namespace App;
4
5
use Illuminate\Database\Eloquent\Model;
6
7
class TechTipComments extends Model
8
{
9
    protected $primaryKey = 'comment_id';
10
    protected $fillable = ['tip_id', 'user_id', 'comment'];
11
    protected $casts = [
12
        'created_at' => 'datetime:M d, Y',
13
        'updated_at' => 'datetime:M d, Y',
14
    ];
15
16
    // public function techTips()
17
    // {
18
    //     return $this->belongsTo('App\TechTips');
19
    // }
20
21 2
    public function user()
22
    {
23 2
        return $this->hasOne('App\User', 'user_id', 'user_id');
24
    }
25
}
26