Completed
Push — develop ( 0bdcf1...3b506c )
by Enea
09:31 queued 08:05
created

AuthorizationNotRevokedException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
c 0
b 0
f 0
lcom 0
cbo 1
dl 0
loc 7
ccs 0
cts 4
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getOperationName() 0 4 1
1
<?php
2
/**
3
 * Created on 18/03/18 by enea dhack.
4
 */
5
6
namespace Enea\Authorization\Exceptions;
7
8
class AuthorizationNotRevokedException extends UncompletedOperationException
9
{
10
    protected function getOperationName(): string
11
    {
12
        return 'revoked';
13
    }
14
}
15