EventRepetition::event()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 2
ccs 0
cts 2
cp 0
crap 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace App\Models;
4
5
use Illuminate\Database\Eloquent\Factories\HasFactory;
6
use Illuminate\Database\Eloquent\Model;
7
8
class EventRepetition extends Model
9
{
10
    use HasFactory;
11
12
    /**
13
     * The attributes that aren't mass assignable.
14
     *
15
     * @var array
16
     */
17
    protected $guarded = [];
18
19
    /**
20
     * Returns the event of the event repetition.
21
     */
22
    public function event() {
23
        return $this->belongsTo(Event::class);
24
    }
25
26
}
27