Completed
Push — master ( 0bfc5e...68d7a2 )
by Faiq
18s
created

Thread   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 10
dl 0
loc 24
rs 10
c 0
b 0
f 0
wmc 5

4 Methods

Rating   Name   Duplication   Size   Complexity  
A topic() 0 2 1
A user() 0 2 1
A trimStr() 0 3 2
A doctor() 0 2 1
1
<?php
2
3
namespace App;
4
5
use Illuminate\Database\Eloquent\Model;
6
7
class Thread extends Model
8
{
9
    protected $table = 'threads';
10
11
    protected $dates = [
12
        'created_at',
13
        'updated_at'
14
    ];
15
16
    public function topic() {
17
        return $this->belongsTo('App\ThreadTopic', 'id_topic');
18
    }
19
20
    public function user() {
21
        return $this->belongsTo('App\User');
22
    }
23
24
    public function doctor() {
25
        return $this->belongsTo('App\Doctor');
26
    }
27
28
    public function trimStr(string $string) {
29
        if(strlen($string) > 200) {
30
            return substr($string, 0, 200).'...';
31
        }
32
    }
33
}
34