EventRepetition   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 16
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A event() 0 2 1
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