Completed
Push — master ( 2c87a7...c05784 )
by claudio
04:06
created

Planner::groupsManaged()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 1 Features 0
Metric Value
c 1
b 1
f 0
dl 0
loc 4
ccs 0
cts 4
cp 0
rs 10
cc 1
eloc 2
nc 1
nop 0
crap 2
1
<?php
2
3
namespace plunner;
4
5
6
class Planner extends Employee
7
{
8
9
    public function groupsManaged()
10
    {
11
        return $this->HasMany(Group::class);
12
    }
13
}
14