Payable::subscription()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Siak\Tontine\Model;
4
5
use Illuminate\Database\Eloquent\Builder;
6
7
class Payable extends Base
8
{
9
    /**
10
     * Indicates if the model should be timestamped.
11
     *
12
     * @var bool
13
     */
14
    public $timestamps = false;
15
16
    /**
17
     * The attributes that are mass assignable.
18
     *
19
     * @var array
20
     */
21
    protected $fillable = [
22
        'notes',
23
    ];
24
25
    public function session()
26
    {
27
        return $this->belongsTo(Session::class);
28
    }
29
30
    public function subscription()
31
    {
32
        return $this->belongsTo(Subscription::class);
33
    }
34
35
    public function remitment()
36
    {
37
        return $this->hasOne(Remitment::class);
38
    }
39
40
    /**
41
     * @param  Builder  $query
42
     *
43
     * @return Builder
44
     */
45
    public function scopePaid(Builder $query): Builder
46
    {
47
        return $query->whereHas('remitment');
0 ignored issues
show
Bug Best Practice introduced by
The expression return $query->whereHas('remitment') could return the type Illuminate\Database\Query\Builder which is incompatible with the type-hinted return Illuminate\Database\Eloquent\Builder. Consider adding an additional type-check to rule them out.
Loading history...
48
    }
49
}
50