Continent::countries()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
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 3
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 Continent 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 countries of the event.
21
     */
22
    public function countries()
23
    {
24
        return $this->hasMany(Country::class);
25
    }
26
}
27