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

TechTipComments   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 8
dl 0
loc 13
ccs 2
cts 2
cp 1
rs 10
c 1
b 0
f 0
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
    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