Completed
Push — standalone ( 787e4c...e35bae )
by Philip
07:04
created

MethodList   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getName() 0 4 1
1
<?php
2
3
namespace Dontdrinkandroot\RestBundle\Metadata\Annotation;
4
5
/**
6
 * @Annotation
7
 * @Target({"ANNOTATION"})
8
 */
9
class MethodList extends Method
10
{
11 32
    public function getName(): string
12
    {
13 32
        return Method::LIST;
14
    }
15
}
16