| Total Complexity | 2 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | class PartialRefund extends Base |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Indicates if the model should be timestamped. |
||
| 9 | * |
||
| 10 | * @var bool |
||
| 11 | */ |
||
| 12 | public $timestamps = false; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * The attributes that are mass assignable. |
||
| 16 | * |
||
| 17 | * @var array |
||
| 18 | */ |
||
| 19 | protected $fillable = [ |
||
| 20 | 'amount', |
||
| 21 | ]; |
||
| 22 | |||
| 23 | public function session() |
||
| 24 | { |
||
| 25 | return $this->belongsTo(Session::class); |
||
| 26 | } |
||
| 27 | |||
| 28 | public function debt() |
||
| 31 | } |
||
| 32 | } |
||
| 33 |