Passed
Push — master ( 054b32...1c77af )
by Ron
07:39 queued 12s
created

TechTipComments::User()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 1
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 3
ccs 2
cts 2
cp 1
crap 1
rs 10
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
    protected $hidden = [ 'user_id' ];
16
17 2
    public function User()
18
    {
19 2
        return $this->hasOne('App\User', 'user_id', 'user_id');
20
    }
21
}
22