Completed
Push — master ( 81034a...b50ff0 )
by Faiq
20s queued 11s
created

Thread::trimStr()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 2
nc 2
nop 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
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 trimStr(string $string) {
25
        if(strlen($string) > 200) {
26
            return substr($string, 0, 200).'...';
27
        }
28
    }
29
}
30