EscalationPolicy   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 12
c 0
b 0
f 0
wmc 2
lcom 0
cbo 0
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A summary() 0 4 1
A self() 0 4 1
1
<?php
2
3
namespace Shrikeh\PagerDuty\Entity\EscalationPolicy;
4
5
use Shrikeh\PagerDuty\Entity\EscalationPolicy as EscalationPolicyInterface;
6
7
final class EscalationPolicy implements EscalationPolicyInterface
8
{
9
    public function summary()
10
    {
11
12
    }
13
14
    public function self()
15
    {
16
17
    }
18
}
19